e.Item.Cells[0].Attributes.Add("onmouseover", "javascript:this.style.cursor='hand'");//鼠标停留时变为手形
e.Item.Cells[0].Attributes.Add("onmouseout", "javascript:this.style.cursor='default'");//鼠标离开时变为指针
e.Item.Cells[0].Attributes.Add("onmouseover", c=this.style.backgroundColor;this.style.backgroundColor='#00A9FF'");//鼠标停留时顏色
e.Item.Cells[0].Attributes.Add("onmouseout", "this.style.backgroundColor=c");//鼠标离开时顏色
1.LinkButton
string url=http://writeblog.youkuaiyun.com/PostEdit.aspx
this.RegisterClientScriptBlock("e","");
2.添加
e.Item.Cells[0].Attributes.Add("onclick","window.showModalDialog('" + url + "','','dialogWidth:980px;dialogHeight:700px;scroll:no;')");
3.帶有中文參數時避免亂碼
前臺
後臺
e.Row.Cells[0].Attributes.Add("onclick", "OpendWindow('" + para1+ "','" + para2+ "") + "')");
4.刷新父頁面
實質上是再點擊一下具有刷新功能的控件
e.Item.Cells[0]..Attributes.Add("onclick", "window.showModalDialog('" + url + "','','dialogWidth:400px;dialogHeight:500px;scroll:no;');$get('btnView').click();");
5.返回參數
父頁面
window.showModalDialog(Url,[document.getElementById(''),
document.getElementById('')],
'dialogWidth:645px;dialogHeight:450px;status:no;help:no;scroll:no;menubar:no;resizable:no');
子頁面
string returnCode = "";
string returnValue = "";
string strScript = "";
RegisterClientScriptBlock("rtnValue", strScript);