摘要: 阅读全文
posted @ 2015-01-16 16:14 伟杰Andy 阅读(128) 评论(0) 推荐(0) 编辑
摘要: ="insert into Process.dbo.TempHampInGoodStandingLoanList (Loan_No,ProgramType,ModificationEffectiveDate) values(RIGHT('0000000000' + '"&A5&"',10),'"&B... 阅读全文
posted @ 2014-12-22 10:16 伟杰Andy 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 代码链接:缩略图个人代码:html页面 1 2 3 4 5 6 7 8 9 请选择文件:10 11 12 13 14 View Codeprocess处理 1 2 3 using System... 阅读全文
posted @ 2014-10-19 14:33 伟杰Andy 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 知识点:1. 对图像的操作问题:动态生成验证码解决方案 1 2 3 using System; 4 using System.Web; 5 using System.Drawing; 6 using System.IO; 7 8 public class ValidateCode : IHtt... 阅读全文
posted @ 2014-10-19 08:07 伟杰Andy 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 知识点:1.先创建一个Image,再创建一个水印图片Image,再创建画布Graphic问题:图片上放置一个水印图片解决方案 1 2 3 using System; 4 using System.Web; 5 using System.Drawing; 6 7 public class Shu... 阅读全文
posted @ 2014-10-19 07:27 伟杰Andy 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 知识点:1.先创建一个Image,再创建一个Graphic问题:生成一个图片解决方案 1 2 3 using System; 4 using System.Web; 5 using System.Drawing; 6 7 public class writeAPic : IHttpHandle... 阅读全文
posted @ 2014-10-19 07:11 伟杰Andy 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 知识点: //获取用户要下载的资源的名称 string name=context.Request.Params["downloadName"]; //设置响应报文中,当前资源是一个附件,需要下载。 context.Response.AddHeader("Content-Disposition",... 阅读全文
posted @ 2014-10-18 22:07 伟杰Andy 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 知识点:1 问题:新建一个文件上传的Website Demo解决方案代码链接:WebSite 阅读全文
posted @ 2014-10-18 19:47 伟杰Andy 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 1.使用System.Object.GetType()得到Type引用使用一个SportsCar实例得到类型信息SportsCar sc=new SportsCar();Type t=sc.GetType();2.使用Typeof得到Type引用Type t =typeof(SportsCar);3... 阅读全文
posted @ 2014-10-16 16:04 伟杰Andy 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 知识点:1。.Equals会默认完成区分大小写的比较。使用Equals方法时,结合使用String类的ToUpper方法,就可以选择在比较串时是否考虑串的大小写。要对连个char变量完成区分大小写的比较,只需使用Equals方法,它会默认地完成区分大小写的比较。要完成一个不区分大小写的比较,需要在调... 阅读全文
posted @ 2014-09-26 17:59 伟杰Andy 阅读(525) 评论(0) 推荐(0) 编辑