上一页 1 ··· 6 7 8 9 10 11 下一页
摘要: 在.NET中调用Web Service其实和创建Web Service一样简单。(完整代码示例位置:光盘\code\ch07\ WebAppClient)实现步骤如下。(1)首先我们创建一个ASP.NET Web 应用程序。(2)添加Web Service引用。在项目上单击鼠标右键,在弹出的快捷菜单中选择"添加Web 引用"命令,如图7-6所示,弹出"添加Web引用"对话框,如图7-7所示的窗口。图7-6 选择"添加Web引用"命令(点击查看大图)图7-7 "添加Web引用"对话框添加引用分以下3种情况。如果是本解 阅读全文
posted @ 2013-08-28 11:50 JasonGu0 阅读(1471) 评论(0) 推荐(0) 编辑
摘要: 在数据库或者请求操作时,如果选择的时间段过短或操作数据量过大,就会遇到"请求超时"的的问题,网络上提供很多解决方案,但普遍不完善,根据个人经验及参考网络解决方案,先将其汇总如下: 根据错误类型,大致分为如下几种情况 1:Asp.net请求超时 2:IIS请求超时 3:数据库连接超时 4: 数据库操作超时 5:应用程序池回收(低) 6:Webservice等服务请求超时 下面根据上述情况一一作出处理1:Asp.net请求超时 http请求超时可以在webconfig中进行全局配置,(单位为秒,默认为90秒)如下 system.web> 2:IIS请求... 阅读全文
posted @ 2013-08-26 15:59 JasonGu0 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 第一步:先把string[] 转换成 ArrayList 第二步:移除指定元素第三步:在转换回string[]using System;using System.Collections;class Test{ static void Main() { string [] arr = { "abc1 ", "abc2 ", "abc3 ", }; ArrayList al = new ArrayList(arr); al.RemoveAt(1); arr ... 阅读全文
posted @ 2013-08-24 17:12 JasonGu0 阅读(16547) 评论(0) 推荐(3) 编辑
摘要: public class FullArrange{public static List GetArrangeResult(string str){str = str.Trim();if (string.IsNullOrEmpty(str)){return new List();}else if (str.Length == 1){return new List { str };}else if (str.Length == 2){char[] ca = str.ToArray();return new List() { ca[0].ToString() + ca[1].ToString(), 阅读全文
posted @ 2013-08-10 15:14 JasonGu0 阅读(287) 评论(0) 推荐(0) 编辑
摘要: input控件 js代码 function time() { var q7 = document.getElementById("t1"); var d = new Date(); q7.value = d.toLocaleDateString()+" "+d.toLocaleTimeString(); setInterval (time,1000) } 阅读全文
posted @ 2013-08-02 14:04 JasonGu0 阅读(270) 评论(0) 推荐(0) 编辑
摘要: input控件 是 否 js代码 function cc1() { var q4 = document.getElementById("r1"); var q5 = document.getElementById("r2"); var q6 = document.getElementById("s1"); if (q4.checked == true) { q6.style.display = "block"; } ... 阅读全文
posted @ 2013-08-02 14:02 JasonGu0 阅读(680) 评论(0) 推荐(0) 编辑
摘要: input控件 单价数量总价js代码 function count() { var q1 = document.getElementById("b").value; var q2 = document.getElementById("b1").value; var money = q1 * q2; var q3 = document.getElementById("b2"); q3.value = money; } 阅读全文
posted @ 2013-08-02 13:59 JasonGu0 阅读(400) 评论(0) 推荐(0) 编辑
摘要: inpupt控件 js代码 function yz() { var q8 = document.getElementById("yy1"); var q9 = document.getElementById("sp"); var t = parseInt(q8.value); if (isNaN(t) == true) { q9.innerHTML="不是整数"; } else { ... 阅读全文
posted @ 2013-08-02 13:58 JasonGu0 阅读(549) 评论(0) 推荐(0) 编辑
摘要: 让一个FileUpload控件隐藏,当点击一个按钮时让FileUpload控件相应,弹出文件选择对话框,选择文件后得到文件路径想要得到完整的路径 需要设置IE浏览器的“工具——Internet选项——安全——可信站点——站点——添加一个(http://localhost)——把下面那个勾选 取消” 无标题页 后台.CSprotected void Page_Load(object sender, EventArgs e) { ... 阅读全文
posted @ 2013-08-01 14:03 JasonGu0 阅读(581) 评论(0) 推荐(0) 编辑
摘要: 在几千条记录里,存在着些相同的记录,如何能用SQL语句,删除掉重复的呢?1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断select * from peoplewhere peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1)2、删除表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断,只留有rowid最小的记录delete from people where peopleId in (select peopleI... 阅读全文
posted @ 2013-07-31 12:11 JasonGu0 阅读(257) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 下一页