|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
帮助用户快速实现各种应用服务,ASP商有整合各方面资源的能力,可在短期内为用户提供所需的解决方案。例如,典型的ERP安装,如果要在客户端安装的话需要半年到二年的时间,但是美国的一些ASP商如USI和CORIO能在90—120天内提供ERP应用方案。
在做电子商务站点的时分,常常请求扫瞄器在https和http之间转化
上面我给出响应的代码:
让一个ASP页面以https入手下手,请在该ASP页面顶部增加以下代码:
<%
Response.Buffer=True
If(Request.ServerVariables("HTTPS")="off")Then
Dimxredir__,xqstr__
xredir__="https://"&Request.ServerVariables("SERVER_NAME")&_
Request.ServerVariables("SCRIPT_NAME")
xqstr__=Request.ServerVariables("QUERY_STRING")
ifxqstr__""Thenxredir__=xredir__&"?"&xqstr__
Response.redirectxredir__
Endif
%>
相反的,强制以Http入手下手
请增加以下代码
<%
Response.Buffer=True
If(Request.ServerVariables("HTTPS")="on")Then
Dimxredir__,xqstr__
xredir__="http://"&Request.ServerVariables("SERVER_NAME")&_
Request.ServerVariables("SCRIPT_NAME")
xqstr__=Request.ServerVariables("QUERY_STRING")
ifxqstr__""Thenxredir__=xredir__&"?"&xqstr__
Response.redirectxredir__
Endif
%>
但愿能对你有所匡助
asp对于服务器的要求较高,一般的服务器如果访问量一大就垮了,不得不重启。 |
|