怎样关闭第二页并涮新第一页/定义全局的方法或过程?(200分)

  • 主题发起人 主题发起人 dragonx23
  • 开始时间 开始时间
D

dragonx23

Unregistered / Unconfirmed
GUEST, unregistred user!
实现:
有两个页面:按下第一页面webform1.aspx的按钮执行showModelessDialog()打开第二页面webform2.aspx,在这页面进行了操作,最后关闭webform2.aspx并涮webform1.aspx;
问题:
a.在webform2.aspx里写什么代码关闭自己?在webform2.aspx里如何实现webform1.datagrid1....?(怎样关闭第二页并涮新第一页)
b.是否可以在第一页webform1.aspx定义全局的方法或过程在第二页调用?
如果这样datagrid1是否要定义全局?有什么要注意的?
public static void setdatagrid(){
}
 
不是吧,这么难!
 
用JAVASCRIPT
定义函数
--------------------test1.htm------------------
<script>
function OpenWindows(url,widthx,heighx)
//定义弹出窗口的属性
{
var
newwin=window.open(url,"_blank","toolbar=no,location=no,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,top=0,left=0,width=800,height=600");
return false;
}
</script>
<a href="test2.htm" onclick="return OpenWindows(this.href);">链接</a>
--------------------test2.htm------------------
<script>
opener.location=opener.location;window.close()//关闭时,会自动刷新test1.htm
</script>
呵呵,试一下吧,我一直这样用于数据添加后前面页面的刷新!!
 
已经解决了!
 

Similar threads

D
回复
0
查看
2K
DelphiTeacher的专栏
D
D
回复
0
查看
1K
DelphiTeacher的专栏
D
D
回复
0
查看
1K
DelphiTeacher的专栏
D
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部