如何在asp.net中显示我的计划消息?

时间:2015-09-16 04:26:53

标签: asp.net

我读了这个警告信息的链接:
http://tympanus.net/Development/ModalWindowEffects/
我想在我的asp.net项目中使用该消息框,我如何在我的asp.net项目中使用该链接?例如我的项目中有一个asp.net按钮,我希望当用户按下该按钮时,显示出来将消息链接到user.thanks。

1 个答案:

答案 0 :(得分:0)

我认为你需要从后面的代码中调用javascript,假设你使用c#作为代码,只需将代码编写到你想要显示消息的地方:

Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "thanks msg", "alert('Thanks');", true);

您可以使用jquery或javascript代码替换alert('Thanks');