摘要:
横向滚动图片 1 2 3 4 5 6 7 8 9 阅读全文
摘要:
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... 阅读全文
摘要:
Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->String.prototype.Trim = function() { return this.replace(/(^\s*)|(\s*$)/g, ""); } String.prot... 阅读全文
摘要:
阅读全文
摘要:
转自老方的博客//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... 阅读全文
摘要:
有时候Server.HtmlDecode Server.HtmlEncode不能满足需要时,就需要自定义了.下面是我使用的两个方法.//HTML编码public static string HtmlEncode(string encodeString) { encodeString = encodeString.Replace("<", "<"); encodeString =... 阅读全文
摘要:
1.<%=...%>与<%#... %>的区别: 答:<%=...%>是在程序执行时调用,<%#... %>是在DataBind()方法之后被调用2.控件接收哪些类型数据? 答:接收Bind的控件,一般有dropDownList,DataList,DataGrid,ListBox这些集合性质的控件,而被捆绑 的主要是ArrayList(数组),Ha... 阅读全文
摘要:
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... 阅读全文
摘要:
1.SqlServer存储过程ALTER proc UploadAgentDealerApplyConsent @ID int, @ApplyConsent image/*功能:上传指定代理商的申请单位承诺[图]参数: @ID 代理商信息编号 @ApplyConsent 要上传的申请单位承诺[图]*/asbegin update AgentDealerInfo set ApplyConsent =... 阅读全文
摘要:
转自:http://blog.sina.com.cn/u/46335684010008b7 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->using System; namespace WinFormLiLang { /// /... 阅读全文