从子窗口中返回一个值,并刷新父窗口的datagrid
取回返回值的代码如下:
function getClass()
{
var result;
result = window.showModalDialog( "getClassWindow.aspx ", ' ', 'dialogHeight:400px; dialogWidth:330px; center: yes; help: no;status:no ');
if (result != 'undefined ' && typeof(result)!= 'undefined ')
{
var rv = result.split( ": ");
if (rv.length == 2);
{
document.Form1.t1.value=rv[0];
document.Form1.t2.value=rv[1];
备注:datagrid就是根据上面的两个值来显示的。。
}
}
}
------解决方案--------------------学习中..