2010年7月27日 星期二

C# 如何在ASP.NET 寫入檔案(上傳檔案)到虛擬目錄中

web.config 設定要存取虛擬目錄(網路芳鄰的電腦資料夾)存取帳號密碼
<configuration>
<configSections>
.......................略過
</configSections>
<system.web>
<identity impersonate="true" userName="AAAA" password="0000" />
</system.web>
<connectionStrings>

上傳檔案的方式 C# ASP.NET 語法
FileUpload tempUpload = FileUpload1;
tempUpload.PostedFile.SaveAs(Server.MapPath(VirtualPathUtility.ToAbsolute(Server.UrlDecode("~/虛擬目錄別名/"))) + ServerFileName);

FileUpload tempUpload = FileUpload1;
tempUpload.PostedFile.SaveAs("\\\\192.168.0.10\\資料夾\\" + ServerFileName);

沒有留言:

張貼留言