
ASP.NET
ABCDEF
这个作者很懒,什么都没留下…
展开
-
Asp.net之使用GridView控件的RowCommand事件实现修改和删除
使用GridView控件的RowCommand事件原创 2011-03-28 14:04:00 · 5417 阅读 · 0 评论 -
出现老是弹出Visual Studio 实时调试器 的问题
转自:http://www.cnblogs.com/nick4/archive/2009/05/06/1450766.html相信安装了VS2008的朋友都有同样的经历,就是经常在浏览网页的时候会弹出Visual Studio 实时调试器,非常烦人。其实网页经常都会有错误,没安装VS2008之前一样也有,只不过不是以这种形式显示,而是在左下角出现金黄色盾牌,提示错误,安装了VS2008转载 2015-04-29 15:45:10 · 6152 阅读 · 0 评论 -
WSDL代理类生成
WSDL代理类生成原创 2014-10-23 09:08:43 · 506 阅读 · 0 评论 -
单例模式
方式一:public static Singlenton _sing = null; public static Singlenton GetSinglenton() { if (_sing == null) { _sing = new Singlenton(); } return _sing;转载 2014-05-14 10:07:52 · 566 阅读 · 0 评论 -
IIS FrameWork下载地址(仅备忘)
IIS:http://ishare.iask.sina.com.cn/f/22032063.htmlFM:http://ishare.iask.sina.com.cn/f/23200427.html原创 2014-03-07 10:38:58 · 566 阅读 · 0 评论 -
Windows 服务安装(备忘)
原创 2014-03-06 10:26:40 · 459 阅读 · 0 评论 -
本机ip域名访问设置
仅备忘:C:\Windows\System32\drivers\etc 127.0.0.1 www原创 2013-06-15 14:29:50 · 802 阅读 · 0 评论 -
IIS安装常见错误
1.net framework 4.0安装时提示产生阻滞问题:运行安装程序前,必须安装 32 位 Windows 映像处理组件WIC 32位版http://www.microsoft.com/downloads/en/details.aspx?FamilyID=8e011506-6307-445b-b950-215def45ddd8 中文是wic_x86_chs.exe 英原创 2013-03-25 18:44:11 · 880 阅读 · 0 评论 -
web.config加密与解密
/// summary>/// web.config加密/// summary>/// param name="sender">param>/// param name="e">param>protected void Button1_Click(object sender, EventArgs e){ Configuration config = WebCon原创 2013-01-22 15:58:54 · 762 阅读 · 0 评论 -
编写超级可读代码的15个最佳实践
<br />http://blog.youkuaiyun.com/hfahe/archive/2011/04/05/6303585.aspx转载 2011-04-18 13:06:00 · 783 阅读 · 0 评论 -
数据类型格式
<br />1.Double类型保留两位小数<br /> double d = 1000.568;<br /> Console.WriteLine(d.ToString("N2"));//结果:1000.57<br /> double d1 = 1000.564;<br /> Console.WriteLine(d1.ToString("0.##"));//结果:1000.56<br /> double d2 = 1000.564;<br /> Console.WriteLine(原创 2011-04-11 17:00:00 · 540 阅读 · 0 评论 -
Asp.net之获取GridView控件中TextBox等控件的值
<br />GridViewRow row = ((Control)e.CommandSource).BindingContainer as GridViewRow;<br />TextBox txtGbCount = gvList.Rows[row.RowIndex].FindControl("txtGbCount") as TextBox;原创 2011-03-28 13:55:00 · 4779 阅读 · 0 评论 -
分组正则备忘
string url = "http://www.magnum4d.my/popup/draw-calendar.aspx"; string data_web = WC.DownloadString(url); StringBuilder s = new StringBuilder(); s.Append("");原创 2015-05-27 13:14:39 · 477 阅读 · 0 评论