|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
ASP.NET和ASP的比较,技术上比较已经没什么可说的了.新一代在大部分程度来说当然是比旧一代好了.关键看你对所做软件的理解了.因人而定.会写的话也可能比ASP.NET写得更有效率和更方便重用cookie|js|服务器|购物车|历程|客户端|实行2、js函数:orderform_functions.js
//Vampirebat,2002-1-16;http://www.vampirebat.org
//<--Start--从cookie中读出定单数据的函数
functionReadOrderForm(name)
{
varcookieString=document.cookie;
if(cookieString=="")
{
returnfalse;
}
else
{
varfirstChar,lastChar;
firstChar=cookieString.indexOf(name);
if(firstChar!=-1)
{
firstChar+=name.length+1;
lastChar=cookieString.indexOf(;,firstChar);
if(lastChar==-1)lastChar=cookieString.length;
returncookieString.substring(firstChar,lastChar);
}
else
{
returnfalse;
}
}
}
//-->End
//<--Start--增加商品至购物车的函数
functionSetOrderForm(item_no,item_name,item_amount,item_price)
{
varcookieString=document.cookie;
if(cookieString.length>=4000)
{
alert("您的定单已满
请停止此次定单操纵后增加新定单!");
}
elseif(isNaN(item_amount)||item_amount<1||item_amount.indexOf(.)!=-1)
{
alert("数目输出毛病!");
}
else
{
varmer_list=ReadOrderForm(24_OrderForm);
varThen=newDate();
Then.setTime(Then.getTime()+30*60*1000);
varitem_detail="|"+item_no+"&"+item_name+"&"+item_amount+"&"+item_price;
if(mer_list==false)
{
document.cookie="24_OrderForm="+escape(item_detail)+";expires="+Then.toGMTString();
alert("“"+item_name+"”
"+"已到场您的定单!");
}
else
{
if(mer_list.indexOf(item_no)!=-1)
{
alert(此商品您已增加
请进进定单修正数目!)
}
else
{
document.cookie="24_OrderForm="+mer_list+escape(item_detail)+";expires="+Then.toGMTString();
alert("“"+item_name+"”
"+"已到场您的定单!");
}
}
}
}
//-->End
//<--Start--定单修正更新cookie的函数
functionupdateCookie()
{
varlimit=document.OrderForm.elements.length-3;
if(document.OrderForm.update.value=="修正定单")
</p>ASP最大的缺点在于网络的安全性和可靠性,企业将经营数据放在开放的平台上,最大的担忧就是如何保证这些数据不被其他人破坏。 |
|