本文介绍了当我单击不在空白页面上的按钮时,如何在当前页面上显示更改消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要在页面上显示警告信息,我点击按钮不在空白页面上
请帮助
我尝试了什么:
I need to show alert message on the page where I click on the button not on the blank page
please help
What I have tried:
string alertMessage = "<script language=\"javascript\" type=\"text/javascript\">";
alertMessage += "alert('No quiz avalible');";
alertMessage += "window.location.href=\"";
alertMessage += "View.aspx?Id=" + Request.QueryString["Id"].ToString();
alertMessage += "\";";
alertMessage += "</script>";
ClientScript.RegisterClientScriptBlock(GetType(), "alertMessage ", alertMessage)
推荐答案
protected void Button1_Click(object sender, EventArgs e)
{
string alertMessage = "<script language=\"javascript\" type=\"text/javascript\">";
alertMessage += "
jquery reference
jquery reference
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
请参考: []
这篇关于当我单击不在空白页面上的按钮时,如何在当前页面上显示更改消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!