2006年8月25日
摘要: 作者:http://blog.csdn.net/hivak47/archive/2004/10/31/161006.aspx"^\d+$"  //非负整数(正整数 + 0)"^[0-9]*[1-9][0-9]*$"  //正整数"^((-\d+)|(0+))$"  //非正整数(负整数 + 0)"^-[0-9]*[1-9][0-9]*$"  //负整数"^-?\d+$"    //整数"^\d+(... 阅读全文
posted @ 2006-08-25 14:10 柳之剑 阅读(110) 评论(0) 推荐(0)
摘要: ASP.NET程序中常用的三十三种代码 1. 打开新的窗口并传送参数: 传送参数:response.write("<script>window.open(’*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"’)</script>")接收参数:string a = Request.QueryString("... 阅读全文
posted @ 2006-08-25 14:07 柳之剑 阅读(106) 评论(0) 推荐(0)