上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 用法: 1.Server.MapPath("/") 应用程序根目录所在的位置 如 C:\Inetpub\wwwroot\ 2.Server.MapPath("./") 表示所在页面的当前目录 注:等价于Server.MapPath("") 返回 Server.MapPath("")所在页面的物理文件路径 3.Server.MapPath("../")表示上一级目录 4.Serve... 阅读全文
posted @ 2007-11-09 17:22 群 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 用法: 1.Server.MapPath("/") 应用程序根目录所在的位置 如 C:\Inetpub\wwwroot\ 2.Server.MapPath("./") 表示所在页面的当前目录 注:等价于Server.MapPath("") 返回 Server.MapPath("")所在页面的物理文件路径 3.Server.MapPath("../")表示上一级目录 4.Serve... 阅读全文
posted @ 2007-11-09 17:21 群 阅读(185) 评论(0) 推荐(0) 编辑
摘要: C#: DateTime a = "2007-8-3"; DateTime b = "2007-8-5"; TimeSpan c = b-a; double d = c.TotalDays; //这个d就是天数撒。 阅读全文
posted @ 2007-11-08 16:51 群 阅读(425) 评论(0) 推荐(0) 编辑
摘要: public class StaticDemo { /** * @param args */ public int add() { return 2; } public static void main(String[] args) { // TODO 自动生成方法存根 System.out... 阅读全文
posted @ 2007-10-22 11:23 群 阅读(557) 评论(0) 推荐(0) 编辑
摘要: 加上width="500px" style="word-break:break-all;" 阅读全文
posted @ 2007-10-15 10:57 群 阅读(227) 评论(0) 推荐(0) 编辑
摘要: /// /// 键盘处理事件 /// 主要实现的功能是重写键盘命令事件。使用户在使用的时候,如果当前焦点不是在Button(按钮)上的话,就可以用Enter代替Tab键了。 /// /// /// /// protected override bool ProcessCmdKey(ref Message msg,Keys keyData) { if ( (!(ActiveControl ... 阅读全文
posted @ 2007-07-19 09:45 群 阅读(311) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.We... 阅读全文
posted @ 2007-05-14 09:53 群 阅读(464) 评论(0) 推荐(0) 编辑
摘要: protected void ShowImage(int ID,string str) //显示图片 { //页面传值!!! ArrayList params1 = new ArrayList(); params1.Add(ID); params1.Add(str); string... 阅读全文
posted @ 2007-05-14 09:50 群 阅读(148) 评论(0) 推荐(0) 编辑
摘要: cbbZJ.SelectedIndex = cbbZJ.Items.IndexOf("身份证"); 阅读全文
posted @ 2007-05-10 12:07 群 阅读(638) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.We... 阅读全文
posted @ 2007-04-30 10:53 群 阅读(733) 评论(1) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页