|
2006年1月11日
摘要:
CREATE PROCEDURE pagination3(@tblName varchar(255), -- 表名@strGetFields varchar(1000), -- 需要返回的列 @fldName varchar(255), -- 排序的字段名@PageSize int, -- 页尺寸@PageIndex int, -- 页码@doCount bit, -- 返回记录总数, 非 0 值... 阅读全文
摘要:
CREATE PROCEDURE pagination3(@tblName varchar(255), -- 表名@strGetFields varchar(1000), -- 需要返回的列 @fldName varchar(255), -- 排序的字段名@PageSize int, -- 页尺寸@PageIndex int, -- 页码@doCount bit, -- 返回记录总数, 非 0 值... 阅读全文
摘要:
/// /// /// /// public static string FileUp(System.Web.UI.HtmlControls.HtmlInputFile file) { if(file.Value != "") { int pos = file.Value.Trim().LastIndexOf("\\"); string picName =... 阅读全文
摘要:
/// /// /// /// public static string FileUp(System.Web.UI.HtmlControls.HtmlInputFile file) { if(file.Value != "") { int pos = file.Value.Trim().LastIndexOf("\\"); string picName =... 阅读全文
摘要:
/// /// 生成随机字符串,包含数字和小写字母 /// /// 字符串长度 /// public static string RndNum(int VcodeNum) { string Vchar="0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p"+ ",q,r,s,t,u,v,w,x,y,z"; st... 阅读全文
摘要:
/// /// 生成随机字符串,包含数字和小写字母 /// /// 字符串长度 /// public static string RndNum(int VcodeNum) { string Vchar="0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p"+ ",q,r,s,t,u,v,w,x,y,z"; st... 阅读全文
摘要:
/// /// 发送邮件 /// /// /// /// public static void SendMail(string toMail,string subject,string body){ MailMessage mail = new MailMessage(); mail.From = "jinchuanshu@163.com"; mail.To ... 阅读全文
摘要:
/// /// 发送邮件 /// /// /// /// public static void SendMail(string toMail,string subject,string body){ MailMessage mail = new MailMessage(); mail.From = "jinchuanshu@163.com"; mail.To ... 阅读全文
摘要:
/// /// Array 的摘要说明。 /// public class Array { public Array() { // // TODO: 在此处添加构造函数逻辑 // } /// /// 取得排序数组的最后一数+1 /// /// 数据表名 /// 排序数组的筛选条件 /// 排序数组的最后一数+1 public static int Get... 阅读全文
摘要:
/// /// Array 的摘要说明。 /// public class Array { public Array() { // // TODO: 在此处添加构造函数逻辑 // } /// /// 取得排序数组的最后一数+1 /// /// 数据表名 /// 排序数组的筛选条件 /// 排序数组的最后一数+1 public static int Get... 阅读全文
摘要:
要操作Word,我们就需要Word的对象库文件“MSWORD.OLB”(word 2000为MSWORD9.OLB),通常安装了Office Word后,你就可以在office安装目录的Office10文件夹下面找到这个文件,当我们将这个文件引入到项目后,我们就可以在源码中使用各种操作函数来操作Word。具体做法是打开菜单栏中的项目>添加引用>浏览,在打开的“选择组件”对话框中找到MSWORD.O... 阅读全文
摘要:
要操作Word,我们就需要Word的对象库文件“MSWORD.OLB”(word 2000为MSWORD9.OLB),通常安装了Office Word后,你就可以在office安装目录的Office10文件夹下面找到这个文件,当我们将这个文件引入到项目后,我们就可以在源码中使用各种操作函数来操作Word。具体做法是打开菜单栏中的项目>添加引用>浏览,在打开的“选择组件”对话框中找到MSWORD.O... 阅读全文
|