0
我想要使用警報框消息和ASP語言中的response.redirect的組合。因爲我的下面的代碼不起作用。 請幫忙,謝謝。如何在ASP中使用警報消息和response.redirect的組合
<script language="javascript">
<!--
window.alert ("Please choose another Type of Redemption");
//-->
</script>
<% Response.Redirect("redeem_type.asp?cardno="&BlinkCard&" ") %>
您的JavaScript運行在客戶端和Response.Redirect的在服務器上運行。嘗試'window.location.href =「redeem_type.asp?cardno =」+ <%= this.BlinkCard%>' – PSL
嗨PSL,它的工作。非常感謝你。 – nhusna
不錯..很高興知道... :) – PSL