摘要:
ScriptManager.RegisterStartupScript方法如果页面中不用Ajax,cs中运行某段js代码方式可以是:Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "<script>window.open('default2.aspx')</script>");如果页面中使用了Ajax ,则上述代码即使执行也无效果。对这种情况我们通常采用:ScriptManager.RegisterStartupScript(this.Butt 阅读全文
摘要:
Sys.InvalidOperationException: Handler was not added through the Sys.UI.DomEvent.addHandler method...问题原因:如果将ModalPopupExtender的OK/Cancel 按钮,放在了弹出框的UpdatePanel内,就会报这个错解决办法:既然ModalPopupExtender不让人在UpdatePanel内放Ok/Cancel的控制按钮,那就干脆不放了,用Show()和Hide()来控制~即,view plaincopy to clipboardprint?<cc1:ModalPo 阅读全文
摘要:
用如下的代码也可以正确删除int i = 0;foreach (int indexChecked in checkedListBox.CheckedIndices) { checkedListBox.Items.RemoveAt(indexChecked - i); i++; // 通过减去i来修正删除选项后的索引错误 } 阅读全文