摘要: 对CAB文件进行数字签名 传说中数字签名之后就可以不出现提示而自动下载,所以也试试: 在\Microsoft Visual Studio .NET 2003\SDK\v1.1\Bin 中间有三个小工具,就用他们来实现数字签名。 1.Makecert.exe ---证书创建工具 2.Cert2Spc.... 阅读全文
posted @ 2014-06-19 22:47 Sacred随心 阅读(1374) 评论(0) 推荐(0) 编辑
摘要: 根据提供的wsdl生成webservice代理类1、开始->程序->Visual Studio 2005 命令提示2、输入如下红色标记部分D:/Program Files/Microsoft Visual Studio 8/VC>wsdl /language:c# /n:TestDemo /out:... 阅读全文
posted @ 2014-04-28 10:24 Sacred随心 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 变量命名方法:匈牙利命名法: 变量名=类型+对象描述Int 整型 —— i Float 浮点 —— fl Boolean 布尔 —— bString 字符串 —— sArray 数组 —— aObject 对象 —— oFunction 函数 —— fnRegular Expression 正则 —— re驼峰命名法: 全小写 —— hello_world、little_boy、big_house_man大小写混合:大驼峰 —— HelloWorld、LittleBoy、BigHouseMan小驼峰 —— helloWord、littleBoy、bigHouseMan类 ... 阅读全文
posted @ 2014-03-21 22:54 Sacred随心 阅读(415) 评论(0) 推荐(0) 编辑
摘要: '> 阅读全文
posted @ 2014-03-12 15:15 Sacred随心 阅读(163) 评论(0) 推荐(0) 编辑
摘要: protected void btnUpdate_Click(object sender, EventArgs e) { Response.Redirect("loan_After_ding_ShowList.aspx?loan_id=" + hiddSelectId.Value); } 1 3 4 5 6 7 8 逾期用户列表 9 10 11 12 13 30 31 32 33 34 35 36 ... 阅读全文
posted @ 2014-03-12 15:05 Sacred随心 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-03-11 14:17 Sacred随心 阅读(106) 评论(0) 推荐(0) 编辑
摘要: '> 阅读全文
posted @ 2014-03-11 10:20 Sacred随心 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 如果在验证控件之前调用了js并带返回那么验证控件的js就未执行到需要在按钮添加if(Page_ClientValidate) return jsfunction(); 阅读全文
posted @ 2014-02-14 12:55 Sacred随心 阅读(423) 评论(0) 推荐(0) 编辑
摘要: private string get(string url) { HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); request.CookieContainer = this.cc; request.Method = "GET"; HttpWebResponse response = (HttpWebResponse)request.GetResponse(); StreamReader r... 阅读全文
posted @ 2014-01-18 03:32 Sacred随心 阅读(183) 评论(0) 推荐(0) 编辑
摘要: //禁用F5 window.document.onkeydown = KeyStroke; function KeyStroke() { var key = event.keyCode; event.srcElement.releaseCapture(); if (key == 116) { event.keyCode = 0; event.returnValue = false; } } 阅读全文
posted @ 2013-12-10 15:54 Sacred随心 阅读(489) 评论(0) 推荐(0) 编辑