WEB开发网
开发学院WEB开发ASP.NET 实现在页面中单击按钮关闭页面 阅读

实现在页面中单击按钮关闭页面

 2006-05-30 17:07:42 来源:WEB开发网   
核心提示:在aspx页面中要实现单击一个按钮(服务器端控件)来关闭当前页面,只需要在aspx页面的page_load()方法中加入下列语句:this.btnClose.Attributes.Add("onclick","window.close()");//btnClose是按钮的名字,此

在aspx页面中要实现单击一个按钮(服务器端控件)来关闭当前页面,只需要在aspx页面的page_load()方法中加入下列语句:
this.btnClose.Attributes.Add("onclick","window.close()");//btnClose是按钮的名字,此语句是给其添加一个单击属性,调用window.close()方法。
2> 在html页面中要实现单击一个按钮(html控件)来关闭当前页面,只需要在html代码中的按钮控件代码中添加一个onclick属性即可,代码如下:
< INPUT id="Button1" type="button" value="Button" name="Button1" onclick="window.close

http://lj821022.cnblogs.com/archive/2006/05/29/412209.html

Tags:实现 页面 单击

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接