我想在ASP语言中使用警告框msg和response.redirect的组合。因为我的下面的代码不起作用。 请帮忙,谢谢。
<script language="javascript">
<!--
window.alert ("Please choose another Type of Redemption");
//-->
</script>
<% Response.Redirect("redeem_type.asp?cardno="&BlinkCard&" ") %>
答案 0 :(得分:0)
Response.Redirect
命令用于将用户发送到另一个URL而不是他们登陆的页面,而不发送任何HTML内容。
您需要将您的网址设置为按钮,以便用户看到您的第一条消息,然后点击“下一步”或其他内容,然后将其带到您要发送给他们的网页。