日期:2014-05-19  浏览次数:20531 次

按照ID链接问题!请高手来指点一下步骤!
链接问题
我想做一个链接:
比方说链接“详细”这两个汉字,但是得按照数据库中的ID链接到相对的.html文件。
"相对的ID "pore.html
如何动态的获取这个ID呢?
数据表名:Dateoo
主键名称:DateID




------解决方案--------------------
叶面onload的时候select id出来
链接动态生成
<a href= <%=youid%> + "proe.html ">
------解决方案--------------------
要不用HyperLink控件?
Dim yourid as string
yourid = comm.ExecuteScalar()
HyperLink1.NavigateUrl = yourid + "proe.html "
------解决方案--------------------
<ItemTemplate>
<a target=_self href=pore.html?id= <%#DataBinder.Eval(Container.DataItem, "DateID ")%> '>
详细信息 </a>
</ItemTemplate>
这个是在dataGrid里面用到的传值
------解决方案--------------------
id?内容