国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

在.net使用代理瀏覽網頁

2024-07-10 12:59:14
字體:
來源:轉載
供稿:網友

最大的網站源碼資源下載站,

不需要使用用戶名密碼的代理服務器,匿名代理
<%@ import namespace="system.net" %>
<%@ import namespace="system.io" %>
<script language="c#" runat="server">
void page_load(object src, eventargs e) {
mypage.text = readhtmlpage("http://www.iwbuy.com");
}

private string readhtmlpage(string url)
{
string result;
webresponse objresponse;
webproxy proxyobject = new webproxy("http://urproxy:port/",true);
webrequest objrequest = system.net.httpwebrequest.create(url);
objrequest.proxy = proxyobject;

objresponse = objrequest.getresponse();
using (streamreader sr =
new streamreader(objresponse.getresponsestream()) )
{
result = sr.readtoend();
// close and clean up the streamreader
sr.close();
}
return result;
}
</script>
<html>
<body>

<b>下面的內容框可以顯示你要瀏覽的網頁
<a href="http://www.iwbuy.com">www.iwbuy.com</a></b><hr/>
<asp:literal id="mypage" runat="server"/>
</body>
</html>

需使用用戶名密碼的代理服務器使用方法

<%@ import namespace="system.net" %>
<%@ import namespace="system.io" %>
<script language="c#" runat="server">
void page_load(object src, eventargs e) {
mypage.text = readhtmlpage("http://www.iwbuy.com");
}

private string readhtmlpage(string url)
{
string result;
httpwebrequest makereq =(httpwebrequest)webrequest.create("http://www.iwbuy.com/");
networkcredential givecred = new networkcredential("username","password","domain");
credentialcache putcache = new credentialcache();
putcache.add(new uri("http://www.iwbuy.com/"), "basic", mycred);
makereq.credentials = mycache;
webresponse objresponse;
objresponse = objrequest.getresponse();
using (streamreader sr = new streamreader(objresponse.getresponsestream()) )
{
result = sr.readtoend();
// close and clean up the streamreader
sr.close();
}
return result;
}
</script>
<html>
<body>
<b>下面的內容框可以顯示你要瀏覽的網頁
<a href="http://www.iwbuy.com">www.iwbuy.com</a></b>
<hr/>
<asp:literal id="mypage" runat="server"/>
</body>
</html>
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 类乌齐县| 九寨沟县| 保德县| 宜川县| 麻阳| 井冈山市| 泰州市| 丰城市| 昭通市| 外汇| 珠海市| 衡阳县| 龙胜| 望城县| 个旧市| 大冶市| 宁安市| 明水县| 雅江县| 齐齐哈尔市| 图木舒克市| 裕民县| 崇仁县| 前郭尔| 黄山市| 河北省| 河曲县| 泰宁县| 乐平市| 上犹县| 澜沧| 平乐县| 灌南县| 门头沟区| 高雄市| 项城市| 吐鲁番市| 黔江区| 马尔康县| 望谟县| 珲春市|