修改弹出页面修改后关闭,自动刷新父页面使用window.location=window.location;没反应啊?
datagrid一个按钮列绑定:
function openZBDayInputModifyDialog(myDate)
{
var d, s;
var c = ":";
d = new Date();
s += d.getHours() + c;
s += d.getMinutes() + c;
s += d.getSeconds() + c;
s += d.getMilliseconds();
window.showModalDialog("ZBDayInputModify.aspx?myDate="+myDate+"&temp="+s,"dayinputmodifywin","dialogwidth:450px;dialogheight:400px;edge: Raised; center: Yes; help: No; resizable: No; status: No;");
//window.parent.Right.location = "ZBDayInputList.aspx";
window.location=window.location;
}
关闭弹出的模态对话框后,该页面没自动刷新。怎么该啊?