本文介绍了使用C#在ASP.NET中创建弹出窗口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在ASP.Net中创建对话框对话框,例如:如果单击一个POP窗口,则显示消息.(成功登录")

how to create a dilogue box in ASP.Net, EX:If i click a button One POP Window Show the message.("Successfully Login")

推荐答案


Response.Write("<script type=''text/javascript''>alert(''Sucessfully login'')</script>");
       Response.Flush();



C#还提供了注册客户端脚本的功能.

Page.ClientScript.RegisterStartupScript()

为此,下面的链接将为您提供帮助.


DevCurry.com


希望您得到了答案



C# also provides to register client side script.

Page.ClientScript.RegisterStartupScript()

For this the below link will help you.


DevCurry.com


Hope you have got the answer



这篇关于使用C#在ASP.NET中创建弹出窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-04 22:58