交流,学习,进步!

千里之行始于足下……
  博客园  :: 首页  :: 联系 :: 订阅 订阅  :: 管理

2007年4月4日

摘要: 完整日期时间格式 (long date + long time) dddd, MMMM dd, yyyy HH:mm:ss g 一般格式 (short date + short time) MM/dd/yyyy HH:mm G 一般格式 (short date + long time) MM/dd/... 阅读全文

posted @ 2007-04-04 09:49 xixi8820 阅读(1501) 评论(0) 推荐(0) 编辑

2007年3月8日

摘要: 1window.showModalDialog(url,window,"help:no;status:no;scrollbars:no;center:yes;dialogwidth:310px;dialogheight:250px;"); 阅读全文

posted @ 2007-03-08 17:43 xixi8820 阅读(162) 评论(0) 推荐(0) 编辑

2007年2月8日

摘要: 一,哈希表(Hashtable)简述 在.NET Framework中,Hashtable是System.Collections命名空间提供的一个容器,用于处理和表现类似key/value的键值对,其中key通常可用来快速查找,同时key是区分大小写;value用于存储对应于key的值。Hashta... 阅读全文

posted @ 2007-02-08 16:58 xixi8820 阅读(176) 评论(0) 推荐(0) 编辑

2007年1月10日

摘要: BufferResponse - 当设置为 True(默认设置)时,ASP.NET 将响应向下发送到客户端之前先缓存整个响应。缓存是一种非常有效的方法,可以通过减少辅助进程和 Internet 信息服务 (IIS) 进程之间的通信来提高性能。当设置为 False 时,ASP.NET 会将响应缓存在 ... 阅读全文

posted @ 2007-01-10 09:33 xixi8820 阅读(192) 评论(0) 推荐(0) 编辑

2006年12月22日

摘要: function CheckQuery() {if(BlankInBatchEdit.txtUNIT_PRICE.value == ""){alert("请填写[单价]!");BlankInBatchEdit.txtUNIT_PRICE.focus();return false;} if(isNaN... 阅读全文

posted @ 2006-12-22 17:45 xixi8820 阅读(1084) 评论(0) 推荐(0) 编辑

摘要: StringBuilder sb= new StringBuilder();sb.Append(""); Page.RegisterStartupScript("msg", sb.ToString()); 阅读全文

posted @ 2006-12-22 08:59 xixi8820 阅读(119) 评论(0) 推荐(0) 编辑

摘要: function setTextBoxValue() { var txtInPoint = document.getElementById("txtINPOINT_TextBox1"); if(document.getElementById("notTxtHour_TextBox1").value.... 阅读全文

posted @ 2006-12-22 08:57 xixi8820 阅读(3008) 评论(0) 推荐(0) 编辑

2006年12月20日

摘要: string str = "11:22:33:44"; txtMIB_ID.Text = str.Split(':')[0].ToString(); txtMIB_ID1.Text = str.Split(':')[1].ToString(); txtMIB_ID2.Text = str.Spli... 阅读全文

posted @ 2006-12-20 15:30 xixi8820 阅读(176) 评论(0) 推荐(0) 编辑

摘要: ===================private void Page_Load(object sender, System.EventArgs e){this.TextBox1.Attributes.Add("onblur","test(this);");} 阅读全文

posted @ 2006-12-20 13:10 xixi8820 阅读(222) 评论(0) 推荐(0) 编辑

2006年12月13日

摘要: 1stringurl="AddNavigation.aspx?id="+this.Identity+"&page="+Request.QueryString["page"]+""+SqlHelper.GetUrlStringFromUrl()+"','','height=450,width=600... 阅读全文

posted @ 2006-12-13 10:13 xixi8820 阅读(143) 评论(0) 推荐(0) 编辑