A. asp.net中如何獲取文件的絕對路徑
如果你是單純的要獲取絕對路徑,可以用1樓的方法.如果你是要獲取文件路徑後對文件操作,你可以用TextBox和FileUpload組合,把FileUpload的寬設為0後,這個組合看上去就仍然像一個FileUpload,然後在pageload裡面寫下面一行:
this.FileUpload1.Attributes.Add("onchange", "document.getElementById('" + TextBox1.ClientID + "').value = this.value");
這樣TextBox的text屬性值就是所選文件的絕對路徑值
B. ASP.NET如何抓取網頁指定數據
抓取了整個頁面的內容代碼
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(TextBox1.Text);
HttpWebResponse webResponse = (HttpWebResponse)webRequest.GetResponse();
Stream stream = webResponse.GetResponseStream();
StreamReader reader = new StreamReader(stream, System.Text.Encoding.GetEncoding("utf-8"));
//整個頁面內容
Label1.Text = reader.ReadToEnd();