当前位置: 代码迷 >> vbScript >> js改成vbs,该如何解决
  详细解决方案

js改成vbs,该如何解决

热度:7595   发布时间:2013-02-26 00:00:00.0
js改成vbs
哪位大侠,帮我把这段代码改成js的..
<%
Dim username
username=session("lxadmin")
if username="" then
username=request.Cookies("lxadmin")
End if
If username<> "ljdb" and username<> "lxnews" then
Response.Redirect("http://lxnews.zjol.com.cn/ggl/index.htm")
End If
%>


------解决方案--------------------------------------------------------
JScript code
<%@language="JScript"%><% var username = Session("lxadmin"); if(username=="") username = Request.Cookies("lxadmin");if(username != "ljdb" && username != "lxnews") Response.Redirect("http://lxnews.zjol.com.cn/ggl/index.htm");%>
  相关解决方案