摘要:
下面为您介绍sql下用了判断各种资源是否存在的代码,需要的朋友可以参考下,希望对您学习sql的函数及数据库能够有所帮助。库是否存在if exists(select * from master..sysdatabases where name=N'库名')print 'exists'elseprint... 阅读全文
摘要:
//自定义的类model m = new model();//取得类的Type实例//Type t = typeof(model);//取得m的Type实例Type t = m.GetType();string className = t.Name +"\r\n";//获取所有方法System.Re... 阅读全文
摘要:
生成验证码:using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Drawing; using System.Drawing.Drawing2D; ... 阅读全文