<%rel=Trim(Request.QueryString("rel")):id=Trim(Request.QueryString("id"))
if not IsNumeric(id) then Response.Write"不是数值型" '用这句就能判断传过来的id值是不是数值型了
IF rel="gywm" then
sql="select * from gywm where id="&id
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sql,conn,1,1
if rs.eof and err then Response.Write"数据库连接错误" '加上这句能判断出数据库是否连接上了
%>
在IF rel="gywm" then 前面加一个
rel=request("rel")
另外你这个页面要引进包含conn这个对象的页面
在sql前加上
id=Request("id")
Rel=Request("Rel")
在IF前面加一条语句,id=request.querystring("rel")
<%
if request("rel")="gywm" then '注意这裏的写法
m=request("id") m为接收参数名 id传递参数名
'你的代码内容
end if
%>
可能是你的连接字符串有问题,建议检查一下你的数据库连接