<%
dim rsver,sqlver
Set rsver=Server.CreateObject("Adodb.RecordSet")
sqlver="select * from Type where company='"&Session("UserName")&"'"
rsver.Open sqlver,conn,1,3 //选表Type中公司名为传递过来的用户名
%>
<td width="50%" bgcolor="#00FFFF"><div align="center">用户名</div></td>
<td width="50%" bgcolor="#00FFFF"><div align="center">型号</div></td>
<td bgcolor="#00CCFF"><%=rsver("company")%></td>---//显示公司名‘
<td bgcolor="#00CCFF"><%=rsver("Ver")%></td> -----//显示此用户名对应产品的型号
下面是第二个表
<%
dim rsupver,sqlupver
Set rsupver=Server.CreateObject("Adodb.RecordSet")
sqlupver="select * from Soft "---我不知道此处该写什么条件。。
rsupver.Open sqlupver,conn,1,3
%>
<TD height=1>
<%if rsver("Ver")=rsupver("ver") then%> ----此处当上一表Type中的版本号rsver("Ver")和表Soft中的版本号rsupver("ver")相同时显示-----这样写两个不同表里的数据对么??
下面内容
<%=rsupver("ver")%>---即显示Soft中的版本号
<%else%>
XXXXXXX
<%end if%>
这样写对么?