我是新手代码并从ASP开始。如何创建一个简单的消息框,以便我可以在网页上提醒用户?
答案 0 :(得分:28)
<% response.write("<script language=""javascript"">alert('Hello!');</script>") %>
答案 1 :(得分:25)
这是一种方法:
<%
Dim message
message = "This is my message"
Response.Write("<script language=VBScript>MsgBox """ + message + """</script>")
%>
答案 2 :(得分:6)
<!DOCTYPE html>
<html>
<body>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction()
{
alert("Hello!");
}
</script>
</body>
</html>
复制将其粘贴到HTML文件中并在任何浏览器中运行,这应该使用javascript显示警告。
答案 3 :(得分:0)
如果你想从后面的代码中做到这一点,试试这个:
System.Web.UI.ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "AlertBox", "alert('Message');", true);