上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页
  2009年5月5日
摘要: 横向滚动图片 1 2 3 4 5 6 7 8 9 阅读全文
posted @ 2009-05-05 10:21 雨季 阅读(1169) 评论(0) 推荐(0) 编辑
摘要: function ChkData(str) { var r = str.match(/^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2})$/); if(r==null) return false; var d= new Date(r[1], r[3]-1, r[4]); retu... 阅读全文
posted @ 2009-05-05 10:21 雨季 阅读(260) 评论(0) 推荐(0) 编辑
摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->String.prototype.Trim = function() { return this.replace(/(^\s*)|(\s*$)/g, ""); } String.prot... 阅读全文
posted @ 2009-05-05 10:20 雨季 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2009-05-05 10:18 雨季 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 转自老方的博客//Title:绘制曲线图//Author:williamfang//PubDate:2005-8-31//定义绘制图片的宽/高int width=246,height=200;//定义绘制曲线的颜色Pen greenPen = new Pen(Color.Green, 1);//定义PointF数组(点)ArrayList a = new ArrayList();a.Add(new... 阅读全文
posted @ 2009-05-05 10:16 雨季 阅读(1141) 评论(0) 推荐(0) 编辑
摘要: 有时候Server.HtmlDecode Server.HtmlEncode不能满足需要时,就需要自定义了.下面是我使用的两个方法.//HTML编码public static string HtmlEncode(string encodeString) { encodeString = encodeString.Replace("<", "&lt;"); encodeString =... 阅读全文
posted @ 2009-05-05 10:14 雨季 阅读(359) 评论(0) 推荐(0) 编辑
摘要: 1.<%=...%>与<%#... %>的区别: 答:<%=...%>是在程序执行时调用,<%#... %>是在DataBind()方法之后被调用2.控件接收哪些类型数据? 答:接收Bind的控件,一般有dropDownList,DataList,DataGrid,ListBox这些集合性质的控件,而被捆绑 的主要是ArrayList(数组),Ha... 阅读全文
posted @ 2009-05-05 10:11 雨季 阅读(199) 评论(0) 推荐(0) 编辑
摘要: FTP Client library in C#Author: Jaimon MathewThis is the C# version of an FTP client library which is originally written in Java. The library will be compiled to a DLL file. A test program is also inc... 阅读全文
posted @ 2009-05-05 10:06 雨季 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 1.SqlServer存储过程ALTER proc UploadAgentDealerApplyConsent @ID int, @ApplyConsent image/*功能:上传指定代理商的申请单位承诺[图]参数: @ID 代理商信息编号 @ApplyConsent 要上传的申请单位承诺[图]*/asbegin update AgentDealerInfo set ApplyConsent =... 阅读全文
posted @ 2009-05-05 10:06 雨季 阅读(724) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.sina.com.cn/u/46335684010008b7 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->using System; namespace WinFormLiLang { /// /... 阅读全文
posted @ 2009-05-05 10:05 雨季 阅读(202) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页