ASP.NET Repeater控件传值问题
我用Repeater控件在A页面显示新闻表的内容,想点击新闻标题跳转到B页面并把对应新闻的ID也传到B页面实用。。那个点击到的新闻ID怎样获取并传到B页面的?有什么方法呢...
我用 Repeater控件在A页面显示新闻表的内容,想 点击新闻标题跳转到B页面 并把对应新闻的ID也传到B页面实用。。那个点击到的新闻ID怎样获取并传到B页面的?有什么方法呢?列出一两种,最好有实例啦 ^ ^
展开
2个回答
展开全部
例如:有一个学生表
从数据库中查询出ID和Name即学生主键ID和学生姓名
绑定的时候,将ID和Name都绑定起来。
<asp:Repeater ID="rptShow" runat="server">
<HeaderTemplate>
<table>
<tr>
<td>
学生姓名
</td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td>
<a href='Students.aspx?id=<%#Eval("StudentID") %>'>
<%#Eval("StudentName")%>
</a>
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
A标签就是一个链接,将值直接绑定到?后面即可,点击就会跳转并传值到Students.aspx页面。
在Students.aspx页面中,用Request.QueryString["StudentID"].ToString()接收即可。
从数据库中查询出ID和Name即学生主键ID和学生姓名
绑定的时候,将ID和Name都绑定起来。
<asp:Repeater ID="rptShow" runat="server">
<HeaderTemplate>
<table>
<tr>
<td>
学生姓名
</td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td>
<a href='Students.aspx?id=<%#Eval("StudentID") %>'>
<%#Eval("StudentName")%>
</a>
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
A标签就是一个链接,将值直接绑定到?后面即可,点击就会跳转并传值到Students.aspx页面。
在Students.aspx页面中,用Request.QueryString["StudentID"].ToString()接收即可。
2012-02-03
展开全部
举个例子
<a href="news.aspx?id=5">cc</a>
获取
string s=Request.QueryString["id"].ToString();
<a href="news.aspx?id=5">cc</a>
获取
string s=Request.QueryString["id"].ToString();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询