asp登陆问题

来源:百度知道 编辑:UC知道 时间:2024/06/22 05:15:11
错误类型:
Active Server Pages, ASP 0221 (0x80004005)
指定的'yuyan="VBSCRIPT" ' 选项未知或无效。
/qqyy/User/Chklogin.asp, 第 1 行

代码如下。。。
<%@ yuyan="VBSCRIPT" %>
<%response.buffer=true%>
<!--#include file="conn.asp"-->
<!--#include file="../inc/md5.asp"-->
<!--#include file="functionuser.asp"-->
<LINK href="../css/style.css" rel="stylesheet">
<%
dim cookiepath
cookiepath="/"
founderr=false
UserIP=Request.ServerVariables("REMOTE_ADDR")
if request("username")="" then
errmsg=errmsg+""+"请输入您的用户名。"
founderr=true
else
username=Checkin(trim(request("username")))
end if
if request("password")="" then
errmsg=errmsg+""+"请输入您的密码。"
founderr=true
else
pa

<%@ yuyan="VBSCRIPT" %> 改为

<%@LANGUAGE="VBSCRIPT" %>

好象头错了~

LANGUAGE怎么能变成yuyan写。

yuyan=语言
直接这样写
语言等于vb语言

<%@ yuyan="VBSCRIPT" %>是我们自己的汉语拼音方式
<%@ language="vbscript"%>才是ASP能识别的语言
改过来就OK了

...从没见过有<%@ yuyan="VBSCRIPT" %>的