2011年5月19日

给按钮在后台添加属性

摘要: this.Button1.Attributes.Add("onclick","javascript:if(confirm('继续吗?');"){return true;}else{return false;}"); 阅读全文

posted @ 2011-05-19 14:10 Paste 阅读(165) 评论(0) 推荐(0) 编辑

关闭页面不弹出提示框

摘要: --关闭页面不弹出提示框Response.Write("<script>alert('您无权操作!');window.opener=null;window.open('','_self');window.close();</script>");--点击alert确定后 跳转页面Response.Write("<script>alert('该名已经存在!');window.location.href='WebForm2.aspx'</script 阅读全文

posted @ 2011-05-19 14:06 Paste 阅读(181) 评论(0) 推荐(0) 编辑

获取IP

摘要: public static string GetIP() { string result = String.Empty; result = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if (null == result || result == String.Empty) { result = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"]; } if (null == result || 阅读全文

posted @ 2011-05-19 14:05 Paste 阅读(186) 评论(0) 推荐(0) 编辑

JS选择html页面中的checkbox实现全选

摘要: <!--html--><input id="Checkbox2" type="checkbox" onclick="check(this)" />全选 &nbsp;<asp:Button ID="btnAddFuJian" runat="server" Text="添加所选附件" OnClick="btnAddFuJian_Click" OnClientClick="return lessthan();&qu 阅读全文

posted @ 2011-05-19 14:03 Paste 阅读(5094) 评论(0) 推荐(0) 编辑

导航