05 2008 档案
摘要: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');&...
阅读全文
摘要:方法一: static bool IsNumeric(string str) { if (str==null || str.Length==0) return false; foreach(char c in str) { if (!Char.IsNumber(c)) { return false; ...
阅读全文
摘要:function checkForm(){ chs = document.getElementById("gvNewsList").getElementsByTagName("INPUT"); n = 0; for( i = 0; i<chs.length; i++ ) { if( chs[i].checked) ...
阅读全文