我只是想在我的项目中检索图像。但我无法让它在在线服务器上运行。
此代码在本地服务器上运行良好:
Image image = Image.FromFile("C:\\Users\\Nico\\Desktop\\Project\\MvcApplication1\\MvcApplication1\\Images\\sf.gif");
但我无法在我的服务器上部署它。
下面的代码给出了异常 "FileNotFoundException"
。
Image image = Image.FromFile("\\Images\\sf.gif");
这段代码给出了“不支持 URI 格式”
Image image = Image.FromFile("http://www.mydomain.com/Images/sf.gif");
任何帮助表示赞赏。