//檢查上傳檔案不為空
if(File1.PostedFile!=null)
{
string nam = File1.PostedFile.FileName ;
//取得檔名(抱括路徑)裡最後一個"."的索引
int i= nam.LastIndexOf(".");
//取得檔案副檔名
string newext =nam.Substring(i);
//這裡我自動根據日期和檔案大小不同為檔案命名,確保檔案名稱不重複
DateTime now = DateTime.Now;
string newname=now.DayOfYear.ToString()+File1.PostedFile.ContentLength.ToString();
//儲存檔案到你要的目錄,這裡是IIS根目錄下的upload目錄.你可以改變.
//注意: 我這裡用Server.MapPath()取目前檔案的絕對目錄.在asp.net裡""必須用""代替
File1.PostedFile.SaveAs(Server.MapPath("upload"+newname+newext));
this.HyperLink1.NavigateUrl ="upload"+newname+newext;
//取得這個檔案的相關屬性:檔案名稱,檔案類型,檔案大小
//fname.Text=File1.PostedFile.FileName;
//fenc.Text=File1.PostedFile.ContentType ;
//fsize.Text=File1.PostedFile.ContentLength.ToString();
}