我想獲取保存在客戶端計算機中的映像的路徑。我知道圖像的路徑和文件名。通過使用FileUpload我可以做到這一點,但沒有使用fileupload是有可能獲得文件的路徑??。C# - 從客戶端計算機獲取映像路徑
我的方案在下面給出,
Public void ConverttoByte()
{
//Get the image path from web.config & this image is in client machine
string strConfig = @"C:\Manikandan\image\image1.jpg";
MemoryStream MS = new MemoryStream();
Byte[] data;
int fiFileSize;
System.Drawing.Image image;
image = System.Drawing.Image.FromFile(strConfig);
image.Save(MS, System.Drawing.Imaging.ImageFormat.Gif);
data = MS.ToArray();
CallDBMethod(data);
}
在這裏,我轉換的圖像作爲字節我叫CallDBMethod插入此字節細節DB ..
這一圖像可以在客戶端機器,但不是在服務器機器..
那麼,如何從客戶端機器得到這個圖像路徑&我該如何解決這個?
爲什麼你需要知道客戶端路徑? – RedFilter 2012-07-26 13:41:44