62,269
社区成员
发帖
与我相关
我的任务
分享
this.Master.FindControl("...")
//刷新父窗口
function refreshReferer(){
if(opener == null || !opener.document.forms[0]){
return;
}
opener.document.forms[0].submit();
}
//在body标签中调用
//------------------------------------------------
<body class="bodyBackground" onLoad="javascript: void refreshReferer();">
Literal ltlTitle = (Literal)Master.FindControl("ltlTitle");
ltlTitle.Text = this.Title;