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);
}
}
}
}
这是自己坐的一个低级的多线程刷新系统 其实自己并不懂 全时网上找的 在自己电脑上没事 但在教师机上却显示“基础连接已关闭:连接被意外关闭”请高手赐教 展开
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);
}
}
}
}
这是自己坐的一个低级的多线程刷新系统 其实自己并不懂 全时网上找的 在自己电脑上没事 但在教师机上却显示“基础连接已关闭:连接被意外关闭”请高手赐教 展开
3个回答
展开全部
错误是发生在GetRemotPages.GetPage()方法内,检查GetRemotPages类.
textBox2.Text = GetRemotPages.GetPage(textBox1.Text, data, out err);
你可以这这么测试:
不用多线程单独call GetRemotPages.GetPage()方法,看有没有错误
还有,我想GetRemotPages.GetPage()方法内应该会传一个url网页地址之类的才有意义,否则,真看不懂GetPage()是做什么用
textBox2.Text = GetRemotPages.GetPage(textBox1.Text, data, out err);
你可以这这么测试:
不用多线程单独call GetRemotPages.GetPage()方法,看有没有错误
还有,我想GetRemotPages.GetPage()方法内应该会传一个url网页地址之类的才有意义,否则,真看不懂GetPage()是做什么用
展开全部
调试一下,获得你要访问的那个网址,然后手动输入到地址栏里,看看能不能打开。如果报错不能访问之类的错误,那说明你的网址有问题。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
GetRemotPages.GetPage 你是向一个网址提交数据吧,你的错误信息说明,你访问的网址没有正确响应,可能是服务器挂了,也可能是网络问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询