<%
ShowSmallClassType=ShowSmallClassType_Article
dim ArticleID
ArticleID=trim(request("ArticleID"))
if ArticleId="" then
response.Redirect("Product.asp")
end if
sql="select * from Product where ArticleID=" & ArticleID & ""
Set rs= Server.CreateObject("ADODB.Recordset")
rs.open sql,conn,1,3
if rs.bof and rs.eof then
response.write"<SCRIPT language=JavaScript>alert('商品已经不存在!');"
response.write"javascript:history.go(-2)</SCRIPT>"
else
rs("Hits")=rs("Hits")+1
rs.update
if rs("hits")>=HitsOfHot then
rs("Hot")=True
rs.update
end if
BigClassName=rs("BigClassName")
SmallClassName=rs("SmallClassName")
Xss=rs("Xss")
%>
<a href="????????????" target="_blank"><%=rs("xss")%></a>
<%
end if
rs.close
set rs=nothing
call CloseConn()
%>
===============================================================
需要连接的位置是数据库Qyml表,而不是Product表,地址栏上http://127.0.0.1//ArticleShow.asp?ArticleID=285,
现在两数据表中唯一相关联的是:Product表Xss字段=Qyml表title1字段。
Qyml表title5字段为所要到达的目的地网址(http://...)
请教各位我如何将<%=rs("xss")%>直接连接到Qyml表title5字段中的网址……
小D 在此谢过了!!!