I am new to code and starting with ASP. How do I create a simple message box so I can alert the users on the web page?
Thanks
Henry
I am new to code and starting with ASP. How do I create a simple message box so I can alert the users on the web page?
Thanks
Henry
Here is one way of doing it:
<%
message = "This is my message"
Response.Write("<script language=VBScript>MsgBox """ + message + """</script>")
%>
<% response.write("<script language=""javascript"">alert('Hello!');</script>") %>