随笔分类 -  .Net

.Net
cache
该文被密码保护。

posted @ 2011-12-31 10:30 小羽毛的天空 阅读(0) 评论(0) 推荐(0)

提高IIS7并发连接数
摘要:1. 调整IIS 7应用程序池队列长度由原来的默认1000改为65535。IIS Manager > ApplicationPools > Advanced SettingsQueue Length : 655352. 调整IIS 7的appConcurrentRequestLimit设置由原来的默认5000改为100000。直接运行:C:\Windows\System32\inetsrv\appcmd.exe set config /section:serverRuntime /appConcurrentRequestLimit:100000在%systemroot%\Syste 阅读全文

posted @ 2011-12-31 10:23 小羽毛的天空 阅读(2179) 评论(0) 推荐(0)

webservice
摘要:using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Linq;using System.Web;using System.Web.Services;using System.Web.Services.Protocols;using System.Xml.Linq;using System.IO;using System.Configuration;namespace UpDownFile{ /// <summary> /// UpDownSe 阅读全文

posted @ 2011-07-11 16:56 小羽毛的天空 阅读(251) 评论(0) 推荐(0)

webservice上传图片
摘要:public string servicepath = ""; public StringBuilder pathstr = new StringBuilder(); private void btnExplo_Click(object sender, EventArgs e) { if (openFileDialog1.ShowDialog() == DialogResult.OK) { textImagePath.Text = openFileDialog1.... 阅读全文

posted @ 2011-07-11 16:24 小羽毛的天空 阅读(964) 评论(0) 推荐(0)