摘要: Response.Write("<script>window.open('abc.aspx?Id="+Id+"','_blank','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=400,height=100,left=400,top=400');&... 阅读全文
posted @ 2008-05-18 18:32 Magicam 阅读(464) 评论(0) 推荐(0) 编辑
摘要: 方法一: static bool IsNumeric(string str) { if (str==null || str.Length==0) return false; foreach(char c in str) { if (!Char.IsNumber(c)) { return false; ... 阅读全文
posted @ 2008-05-18 18:27 Magicam 阅读(302) 评论(0) 推荐(0) 编辑