怎样主动访问一个页面

主  题:  怎样主动访问一个页面
作  者:  lishiliang (阿世)  
等  级:
信 誉 值:  100
所属论坛:  .NET技术 C#
问题点数:  30
回复次数:  3
发表时间:  2003-09-13 14:28:05

我想在窗口程序里(非asp.net程序)访问一个网络页面,应该怎样写



回复人: cnhgj(戏子?我菜,故我存在) ( 五级(中级)) 信誉:100 2003-09-13 14:46:00 得分:0

用webBrowser控件

回复人: ego(花花小候) ( 一级(初级)) 信誉:100 2003-09-14 03:31:00 得分:0

System.Net类下的HttpWebRequest和HttpWebResponse
下面是示例:

public Stream Get ( string url )
{
    // create a request based on the URL
    WebRequest req = WebRequest.Create ( url );
    // get the response
    WebResponse res = req.GetResponse ();
    // return a stream containing the response
    return res.GetResponseStream ();
}

回复人: cocosoft(pengyun) ( 两星(中级)) 信誉:116 2003-09-14 03:35:00 得分:0

用webBrowser控件,然后可以使用Web中的Cookie技术完成。

Contributors: FHL