GridView中点击按钮打开窗口并传参
摘要:GridView设置:protected void GridDisplay_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { if (e.Row.RowState == DataControlRowState.Normal || e.Row...
阅读全文
posted @
2008-04-14 11:06
大胖头
阅读(740)
推荐(0) 编辑
打开窗口
摘要:function ShowDialog(){ window.showModalDialog('Query_Display.aspx','window');}注:该方法打开窗口后,在子窗口执行某些事件时,会弹出新的窗口,避免方法是在子窗口页面的<head>之间写下如下脚本:<base target="_self" />
阅读全文
posted @
2008-04-14 10:58
大胖头
阅读(196)
推荐(0) 编辑