首页 热点资讯 义务教育 高等教育 出国留学 考研考公

asp.net中怎样获取repeater中的数据

发布网友 发布时间:2022-04-23 05:46

我来回答

3个回答

热心网友 时间:2022-04-27 11:07

asp.net中获取repeater中的数据的方法是使用DataBinder.Eval循环获取。
Repeater 控件用于显示重复的项目列表,这些项目被*在该控件。Repeater 控件可被绑定到数据库表、XML 文件或者其他项目列表。
以下的完整的读取Repeater的值的方法:
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<html>
<script language="C#" runat="server">
void Page_Load(Object sender, EventArgs e)
{
// 创建连接到pubs数据库
// 访问本地的数据库
SqlConnection myConnection = new SqlConnection("server=localhost;" +
"database=pubs;Trusted_Connection=Yes");
// 使用select语句查询title表中的所有记录
SqlDataAdapter myCommand = new SqlDataAdapter("SELECT * FROM" +
" Titles", myConnection);
// 创建并且填充结果集
DataSet ds = new DataSet();
myCommand.Fill(ds);
// 绑定数据到MyRepeater
MyRepeater.DataSource = ds;
MyRepeater.DataBind();
}
</script>

<%-- 循环读取 MyRepeater中的数据--%>
<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">
<ASP:Repeater id="MyRepeater" runat="server">
<HeaderTemplate>
<Table width="100%" style="font: 8pt verdana">
<tr style="background-color:DFA4">
<th>
Title
</th>
<th>
Title ID
</th>
<th>
Type
</th>
<th>
Publisher ID
</th>
<th>
Price
</th>
</tr>
</HeaderTemplate>

<ItemTemplate>
<tr style="background-color:FFECD8">
<td>
<%# DataBinder.Eval(Container.DataItem, "title") %>
</td>
<td>
<%# DataBinder.Eval(Container.DataItem,"title_id") %>
</td>
<td>
<%# DataBinder.Eval(Container.DataItem, "type") %>
</td>
<td>
<%# DataBinder.Eval(Container.DataItem, "pub_id") %>
</td>
<td>
<%# DataBinder.Eval(Container.DataItem,
"price", "{0:c}") %>
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
</Table>
</FooterTemplate>
</ASP:Repeater>
</body>
</html>

热心网友 时间:2022-04-27 12:25

foreach (RepeaterItem item in Repeater4.Items)
{

TextBox txtyhdw = (TextBox)item.FindControl("txtyhdw");
txtYHDW = txtyhdw.Text;

} 我写的是获取控件值

热心网友 时间:2022-04-27 13:59

你要获取控件的话 楼上是对的

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com