我想在mvc.net中顯示圖像?幫助任何人:))... im通過silverlight控件上傳圖像,並將它們存儲在我的硬盤上的目錄中在mvc.net中顯示圖像c#
1
A
回答
3
我假設您想創建一個將圖片提供給客戶端的操作,這很容易。
public ActionResult ResizedPicture(int pictureId)
{
var picturePath= GetPicturePathFor(pictureId);
return File(picturePath, "image/jpeg");
}
故事是回報FileResult,他們是FileResults大量超載,這樣就可以返回一個流,字節數組或給文件路徑。
GetPicturePathFor()不是mvc的一部分。
+0
tnx阿爾伯特我找到了答案: http://www.highoncoding.com/Articles/689_Uploading_and_Displaying_Files_Using_ASP_NET_MVC_Framework.aspx 如果有人想諮詢... – Rafay 2010-08-10 09:32:59
相關問題
- 1. 在C++中顯示圖像
- 2. 在objective-c中顯示圖像dynamicalli -c
- 3. 使用MVC.net顯示或不使用圖像的好方法
- 4. 關於在C#中顯示DICOM圖像
- 5. 在ASP.NET C中顯示圖像#
- 6. 在c中顯示大圖像#
- 7. 在C++中打開和顯示圖像?
- 8. MVC.NET顯示錯誤消息
- 9. 顯示圖像 - C#/ Silverlight的
- 10. 使用C++顯示圖像
- 11. 如何在c中動態顯示圖像圖像#
- 12. base64圖像不在圖像中顯示
- 13. 在jsf中顯示圖像
- 14. 在EasyGUI中顯示圖像
- 15. 在JTextPane中顯示圖像
- 16. 在php中顯示圖像
- 17. 在QmessageBox中顯示圖像
- 18. 在div中顯示圖像
- 19. 在JTextArea中顯示圖像
- 20. 在UITableview中顯示圖像
- 21. 在ScrollView中顯示圖像
- 22. 在ScrollView中顯示圖像
- 23. 在gridview中顯示圖像
- 24. 在ASP.NET中顯示圖像
- 25. 在jsp中顯示圖像
- 26. 在SSRS中顯示圖像
- 27. 在awt中顯示圖像
- 28. 在QLabel中顯示圖像
- 29. 在Codeigniter中顯示圖像
- 30. 在GridView中顯示圖像
那麼,有什麼問題? – RPM1984 2010-08-07 07:02:09
你的平臺是什麼? ASP.NET? WPF? Silverlight的?的WinForms? – 2010-08-07 07:45:48