关闭模式弹出窗口 [英] clos the modal popup

查看:64
本文介绍了关闭模式弹出窗口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在esc键上关闭模式弹出窗口

我使用了母版页,并在母版页上放置了一个模式弹出框
客户端页面上的3和modelpopup继承相同的母版页

请帮助我关闭esc键中的模式弹出窗口

I want close modal popup on esc key press

i used master page and place one modal popup on master page
and 3 modelpopup on client page which inherit the same master page

please help me to close modal popup in esc key press

推荐答案

在该弹出窗口的Keypress事件中,检查以下键

In Keypress event of that popup check the below key

if(e.KeyChar == (char)27)
{
    yourpopup.visible = false;
}


这篇关于关闭模式弹出窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆