📄 checkout.asp
字号:
<!--#include file="ServerSideGlobalDef.inc"-->
<HTML>
<HEAD>
<SCRIPT language='javascript'>
function cmdNext_onClick()
{
// if as a result of changes to the basket its empty - then tell inform user
if (parent.parent.getCookie("Basket") == "")
{
alert("Your basket is empty - click continue shopping to fill it up with our excellent bargins");
}
else
{
// go to page 2 of checkout process
this.parent.location.href="personaldetails.asp";
}
return true;
}
</SCRIPT>
</HEAD>
<BODY>
<CENTER>
<font face="Comic Sans MS" size="3" color="Navy">Welcome to our secure online ordering system. Your current basket contents are listed below.
<FORM>
Once your happy with its contents click
<INPUT NAME="cmdNext" type="button" VALUE="Next" ALIGN=top onClick="cmdNext_onClick()">
to continue <BR>or click
<INPUT NAME="cmdBrowse" type="button" VALUE="Continue Shopping" ALIGN=top onClick="window.parent.location.href='home.asp'">
to return to the main screen.
</FORM>
</font>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -