关于数据调用
" border="0" />会员注册资料数据表info
" border="0" />
信息发布数据表message
其中message中的info_id等于info中的id,我是用Session保存登陆信息的
我在pro_show.asp加入了
<%
sql="select * from info where id='"&username&"'"
rs.open sql,conn,1,1
if not rs.eof then%>
在要显示发布信息的公司名称、电话、邮箱的地方加入
公司名称:<%=rs("公司名称")%><br>
电话:<%=rs("电话")%><br>
邮箱:<%=rs("邮箱")%><br>
但是不能调试成功,请高手帮忙砍下错哪里了