C#调试时提示 基础连接已关闭:连接被意外关闭 50

usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Da... using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Web;
using System.Threading;
using WindowsApplication3;

namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void toolStripButton3_Click(object sender, EventArgs e)
{

Form2 frm = new Form2();
frm.Show();

}

private void button1_Click(object sender, EventArgs e)
{

string a = this.textBox3.Text.Trim();
int n = 0;
try
{
n = Convert.ToInt32(a) ;
this.textBox4.Text = n.ToString();
}
catch (Exception)
{
this.textBox3.Text = "输入的不是数字";
}

for (int i = 0; i < n; i++)
{

Thread th = new Thread(new ThreadStart(Run));
th.Start();
}
MessageBox.Show("刷新完成");
}
void Run()
{

string err;
string data = "u=";
Encoding myEncoding = Encoding.GetEncoding("utf-8");
data += HttpUtility.UrlEncode("uu", myEncoding);
textBox2.Text = GetRemotPages.GetPage(textBox1.Text, data, out err);

if (err != null && err != "")
{
MessageBox.Show(err);
}

if (err != null && err != "")
{
MessageBox.Show(err);
}

}

}
}
这是自己坐的一个低级的多线程刷新系统 其实自己并不懂 全时网上找的 在自己电脑上没事 但在教师机上却显示“基础连接已关闭:连接被意外关闭”请高手赐教
展开
 我来答
孙中吕
2009-08-22 · 专注C/S架构开发框架技术研究
孙中吕
采纳数:435 获赞数:788

向TA提问 私信TA
展开全部
错误是发生在GetRemotPages.GetPage()方法内,检查GetRemotPages类.

textBox2.Text = GetRemotPages.GetPage(textBox1.Text, data, out err);

你可以这这么测试:
不用多线程单独call GetRemotPages.GetPage()方法,看有没有错误
还有,我想GetRemotPages.GetPage()方法内应该会传一个url网页地址之类的才有意义,否则,真看不懂GetPage()是做什么用
百度网友32c6f24eeab
2009-08-22 · TA获得超过458个赞
知道小有建树答主
回答量:415
采纳率:0%
帮助的人:0
展开全部
调试一下,获得你要访问的那个网址,然后手动输入到地址栏里,看看能不能打开。如果报错不能访问之类的错误,那说明你的网址有问题。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友94f02eb
2009-08-22 · TA获得超过8613个赞
知道大有可为答主
回答量:7955
采纳率:74%
帮助的人:4519万
展开全部
GetRemotPages.GetPage 你是向一个网址提交数据吧,你的错误信息说明,你访问的网址没有正确响应,可能是服务器挂了,也可能是网络问题
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式