笨小孩做开发

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 32 下一页

2014年7月29日

摘要: 一,哈希表(Hashtable)简述 在.NET Framework中,Hashtable是System.Collections命名空间提供的一个容器,用于处理和表现类似keyvalue的键值对,其中key通常可用来快速查找,同时key是区分大小写;value用于存储对应于key的值。Hashtab... 阅读全文
posted @ 2014-07-29 10:59 笨小孩做开发 阅读(265) 评论(0) 推荐(0) 编辑

2014年7月26日

摘要: 阅读全文
posted @ 2014-07-26 10:09 笨小孩做开发 阅读(300) 评论(0) 推荐(0) 编辑

2014年7月9日

摘要: sql语言中有没有类似C语言中的switch case的语句?? 没有,用case when 来代替就行了. 例如,下面的语句显示中文年月 select getdate() as 日期,case month(getdate()) when 11 then '十一' when 12 th... 阅读全文
posted @ 2014-07-09 11:28 笨小孩做开发 阅读(3628) 评论(0) 推荐(0) 编辑

2014年6月30日

摘要: SELECT ID,FORMNAME,NODENAME,SEQUENCE, NAME, STATE, NOWTIMES, WORK.FQREALNAME||'('||FQDEPT.FULLNAME||')' AS FQREALNAME, NVL2(WORK.BHREALNAME,WORK.BHR... 阅读全文
posted @ 2014-06-30 11:16 笨小孩做开发 阅读(206) 评论(0) 推荐(0) 编辑

2014年6月24日

摘要: public void uploadDocMentSave(string Type) { if (Request.Files.Count > 0) { HttpPostedFileBase files = Request.Files[0];//获取文件 string filename = Pat... 阅读全文
posted @ 2014-06-24 09:43 笨小孩做开发 阅读(4064) 评论(0) 推荐(0) 编辑

2014年6月23日

摘要: jQuery获取Select元素,并选择的Text和Value: 1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发 2. var checkText=$("#select_id").find("op... 阅读全文
posted @ 2014-06-23 11:58 笨小孩做开发 阅读(836) 评论(0) 推荐(0) 编辑

2014年6月18日

摘要: public ActionResult GetForm() { HttpRequest request = System.Web.HttpContext.Current.Request; HttpFileCollection FileCollect = request.Files; if (Fi... 阅读全文
posted @ 2014-06-18 19:27 笨小孩做开发 阅读(5709) 评论(0) 推荐(0) 编辑

2014年6月14日

摘要: string strID ="NODE_aSDFghsdfgyuhjidfgh_45678" //得到_ 中间的数int index = strID.IndexOf("_"); int namelength = strID.Length; string id = strID.Substring(... 阅读全文
posted @ 2014-06-14 15:50 笨小孩做开发 阅读(203) 评论(0) 推荐(0) 编辑

2014年6月8日

摘要: var allchooseEmpID = "";var allchooseEmpName = "";//自选经办人 function getJbrWinForMy() { top.MainFrameJS.openWindow({ width: 800, height: 600, modal: tr... 阅读全文
posted @ 2014-06-08 19:07 笨小孩做开发 阅读(174) 评论(0) 推荐(0) 编辑

2014年6月7日

摘要: //加载数据workflowName onloadmyCgxList: function (id) { if (id != null && id != "" && typeof (id) != "undefined") { var param = { "ID": id } $("#myCgxLi... 阅读全文
posted @ 2014-06-07 12:15 笨小孩做开发 阅读(419) 评论(0) 推荐(0) 编辑

上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 32 下一页