关于ASP的问题
Microsoft OLE DB Provider for SQL Server (0x80040E14)第 1 行: '=' 附近有语法错误。
/shudian/common/database.asp, 第 30 行
查阅多书刊。。还没有解决问题
strsql="select nickname from userinfo where"
strsql=strsql & "username='" & strusername & "' and password='" & strpassword & "'"
set rs=getrecordset(strsql,1)
函数FUNCTION是:
function getrecordset(strsql,intopentype)
dim rs
set rs= server.createobject("adodb.recordset")
select case intopentype
case 0
rs.open strsql,g_conn,0,1
case 1
rs.open strsql,g_conn,1,3
end select
set getrecordset=rs
end function
请高手帮忙看下。谢谢