首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web Service >

一个挺严重的有关问题,webservice导致iis无法响应客户对asp及asp.net网页的访问

2011-12-29 
一个挺严重的问题,webservice导致iis无法响应客户对asp及asp.net网页的访问最近总是无法访问单位页面,发现

一个挺严重的问题,webservice导致iis无法响应客户对asp及asp.net网页的访问
最近总是无法访问单位页面,发现一个webservice总是满负荷运转,停掉它后就可以正常访问了,请问是怎么回事?
这个webservice 主要提供客户端的软件升级服务!

[解决办法]
[WebMethod] 
public void userinfo(string username,string unit,string logonip,string hostname) 

 using(SqlConnection conn = new SqlConnection(ConfigurationSettings.AppSettings[ "ConnStr "]))
 {
conn.Open();
SqlCommand cmd = new SqlCommand( "insert into (username, hostname, logonip, hostname) values('" + username + "','" + hostname + "','" + logonip + "', '" + hostname + "'), conn);
cmd.ExecuteNonQuery(); 
 } //在这里会自动关闭连接。
}

就这样.

热点排行