首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > ASP >

大家帮小弟我看看这个连接有什么东东

2012-02-26 
大家帮我看看这个连接有什么错误?tdheight 20 alignleftwidth 100 divalign center ahref

大家帮我看看这个连接有什么错误?
<td   height= "20 "   align=left   width= "100 "> <div   align= "center "> <a   href=showdetial.asp?serialnum= "&request( "serialnum ")& "&num= "&rs( "num ")& "   target=bottom> <%=rs( "theme ")%> </a> </div> </td>
在表格中点击文章标题,转到显示文章详细内容.可是老是跳转不了,好像是那个num= "&rs( "num ")& "   没有传过去.


[解决办法]
<td height= "20 " align=left width= "100 "> <div align= "center "> <a href= "showdetial.asp?serialnum= <%=request( "serialnum ")%> &num= <%=rs( "num ")%> " target=bottom> <%=rs( "theme ")%> </a> </div> </td>

注意引号用法

你这句没有放到asp中吧,没有的话,调用ASP数据要加 <%=%>
[解决办法]
<td height= "20 " align=left width= "100 "> <div align= "center "> <a href= 'showdetial.asp?serialnum= <%=request( "serialnum ")%> &num= <%=rs( "num ")%> ' target=bottom> <%=rs( "theme ")%> </a> </div> </td>

热点排行