我在asp.net和c#中创建了一个页面,我希望这个页面能够作为一个弹出窗口打开。 我该怎么处理代码? 我正在创建学生管理系统,当我点击添加学生并且学生已经存在时,我想要一个弹出窗口,询问您是想要回去还是想要使用C#编码搜索学生?
答案 0 :(得分:3)
使用JavaScript的窗口function
:
var popup = window.open('url');
或确认function
:
function showConfirm()
{
var r=confirm("Do you want to go back or you want to search the student?")
if (r==true)
{
alert("You pressed OK!")
}
else
{
alert("You pressed Cancel!")
}
}
答案 1 :(得分:0)
JavaScript的方式:
<head runat="server">
<title></title>
<script type="text/javascript">
function abrir(url, width, height)
{
window.open(url, '', width, height);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<a href="../yourpage.aspx"><img id="btnAyuda" onclick="abrir('../yourpage.aspx',750, 520);return false" /></a>
</div>
</form>
</body>