帮我看一下这个跳转页代码哪里出错了?急啊!
我要在这段代码中加入if id=77 thenresponse.Redirect "newpro.asp"
这个判断,但是加入后起不了作用,是什么原因呢?哪位高手指点一下,本人不胜感激喔!!
<div align="center">
<%
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from bsort order by classidorder",conn,1,1
id=rs("classid")
if id=77 then
response.Redirect "newpro.asp"
else
if rs.recordcount=0 then
response.write "<br>目前没有产品分类"
else
while not rs.eof
%>
</div>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td height="25" colspan="3" align="left" valign="middle"> <img src="images/tool.gif" width="10" height="9" /><font color="#ffffff"><a href="class.asp?lx=big&anid=<%=rs("classid")%>"> <font color="#ffffff"><strong><%=rs("class")%></strong></font></a></font></td>
</tr>
</table>
<%
rs.movenext
wend
end if
end if
rs.close
set rs=nothing
%>
[[it] 本帖最后由 紫苏 于 2008-7-26 16:40 编辑 [/it]]