由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - 问个c#的抓数据方面的问题
相关主题
HttpWebRequest小程序急问,如何准备关于Windows Media的Interview
How to read SSL Socket stream?Size limit on HttpResponse.BinaryWrite?
WebClient for multi-connections?刚刚发现.net 35里面的property很好用
RSS 简介 Re: HttpWebRequest小程序How to use openFileDialog() to save a binary file in .net C++
HTTP GET over SSL in C#Solution suggestions? (转载)
c#中如何设置HttpWebRequest的UserAgent属性贴一个Interview的题目
网页中没有id的元素怎么submit?请问数据库计数的问题
Powershell dot sourcing question.请教精通WCF的技术大牛。
相关话题的讨论汇总
话题: ie话题: buf话题: c#
进入DotNet版参与讨论
1 (共1页)
p*******p
发帖数: 13670
1
HttpWebRequest request=(HttpWebRequest)WebRequest.Create(str_url);
HttpWebResponse response=(HttpWebResponse)request.GetResponse();
Stream resStream = response.GetResponseStream();
int count = resStream.Read(buf, 0, buf.Length);
str_content=Encoding.Default.GetString(buf, 0,count);
得到了string之后发现里面的内容和我直接去那个网址,看source不一样,
好像是有一些script在里面,所以用ie打开的话会像server request一些data, 然后显示
出来, 但是用c#
得到的就不会去执行那些script,请问我怎么才能得到那些运行过之后,显示在IE里面的so
urce呢?
s*i
发帖数: 5025
2
WebBrowser control


so

【在 p*******p 的大作中提到】
: HttpWebRequest request=(HttpWebRequest)WebRequest.Create(str_url);
: HttpWebResponse response=(HttpWebResponse)request.GetResponse();
: Stream resStream = response.GetResponseStream();
: int count = resStream.Read(buf, 0, buf.Length);
: str_content=Encoding.Default.GetString(buf, 0,count);
: 得到了string之后发现里面的内容和我直接去那个网址,看source不一样,
: 好像是有一些script在里面,所以用ie打开的话会像server request一些data, 然后显示
: 出来, 但是用c#
: 得到的就不会去执行那些script,请问我怎么才能得到那些运行过之后,显示在IE里面的so
: urce呢?

1 (共1页)
进入DotNet版参与讨论
相关主题
请教精通WCF的技术大牛。HTTP GET over SSL in C#
.Text 简易安装c#中如何设置HttpWebRequest的UserAgent属性
C#中调用JavaScript的问题网页中没有id的元素怎么submit?
Anyone uses Script#?Powershell dot sourcing question.
HttpWebRequest小程序急问,如何准备关于Windows Media的Interview
How to read SSL Socket stream?Size limit on HttpResponse.BinaryWrite?
WebClient for multi-connections?刚刚发现.net 35里面的property很好用
RSS 简介 Re: HttpWebRequest小程序How to use openFileDialog() to save a binary file in .net C++
相关话题的讨论汇总
话题: ie话题: buf话题: c#