请问一下,我在程序里面要实现:在webborwser里面打开的网页中直接获得该页面的原代码。而不需要通过在TextBox中输入的URL地址来获得该页面的原代码,因为如果是通过URL路径来获得原代码,那样如果有session的页面有些数据就不能看见。具体就是不通过以下代码来获得原代码
//webUri 是TextBox获得的网页路径。
System.Object nullObject=0;
string str="";
System.Object nullObjStr=str;
Cursor.Current=Cursors.WaitCursor;
axWebBrowser1.Navigate(webUri,ref nullObject,ref nullObjStr,ref nullObjStr,ref nullObjStr);
Cursor.Current = Cursors.Default;
WebClient astroWebClient =new WebClient();
//获取或设置用于对向Internet资源的请求进行身份验证的网络凭据。
astroWebClient.Credentials=CredentialCache.DefaultCredentials;
Byte[] pageData=astroWebClient.DownloadData(webUri);//从指定网站下载数据
pageHtml = Encoding.Default.GetString(pageData); //GB2312//获得网页代码
tb_html.Text=pageHtml;
大家能不能帮我想个办法,不通过路径来获得原代码。而是直接在WebBrowser打开的页面中获得对应的原代码????
求救呀!这个问题我想了好久了,希望大家帮个忙???我现在用的是VS2005,好象在IHTMLDocument2 HTMLDocument = (IHTMLDocument2)axWebBrowser1.Document; 中可以得到!但是我不会用。