关于Repeater 中的DropDownList ,取值问题?求好心人解答!

asp.net中Repeater里有多个DropDownList,如何将所有选择的DropDownList的值取出来。将下拉列表选择的所有值加起来,点击提交后,Label... asp.net 中Repeater里有多个DropDownList,如何将所有选择的DropDownList的值取出来。
将下拉列表选择的所有值加起来,点击提交后,Label1显示所有值的和。
展开
 我来答
notebook_w
2012-02-18 · TA获得超过1519个赞
知道小有建树答主
回答量:274
采纳率:100%
帮助的人:150万
展开全部
应该有个按钮什么的吧,点击它再在后台获取所有的值。
你在按钮的响应事件中遍历repeater,找到每一行的DropDownList。

你在repeater中把下拉框的id设好,例如叫:ddlList 这样每一行的下拉框的id都叫这个,当你执行上面那个事件时,获取下这个id为ddlList的DropDownList,
DropDownList ddlList = e.Item.FindControl("ddlList") as DropDownList;//找到里层的DropDownList对象
string sel = ddlList.SelectedValue;
sel就是这一行的下拉框选中的值,此时可以用一个全局的List存储下。
最后执行完后,List里村的就是所有选中的值

Repeater rep = e.Item.FindControl("rptSubEval") as Repeater;//找到repeater对象
for(rep)//遍历Repeater
{
DropDownList ddlList = e.Item.FindControl("ddlList") as DropDownList;//找到里层的 DropDownList对象
string sel = ddlList.SelectedValue;
sellist.Add(sel);
}

如有不懂,可以上网查Repeater 遍历
追问
这样写代码会报错,e.后面点不出来内容,只有4个选项:Equals、GetHashCode、GetType、ToString,没有其他的选项了,想把下拉列表的所有值加起来,并显示到Label1上。可以把代码再改下吗,代码不是很熟悉。谢谢了
追答
是我写错了。我是把repeater的只一个响应事件写过来了,
string str = "0";//所有下拉列表的和,假设你的下拉列表中的值都是数字
function loopRepeater()
{
foreach (Control c in this.RepeaterID.Controls)
{
DropDownList ddlList= (DropDownList )c.FindControl("ddlList");
string sel = ddlList.SelectedValue;
str = Convert.ToDecimal(sel ) + Convert.ToDecimal(str ) ;

}
}

str就是你要的数据
威孚半导体技术
2024-08-19 广告
威孚(苏州)半导体技术有限公司是一家专注生产、研发、销售晶圆传输设备整机模块(EFEM/SORTER)及核心零部件的高科技半导体公司。公司核心团队均拥有多年半导体行业从业经验,其中技术团队成员博士、硕士学历占比80%以上,依托丰富的软件底层... 点击进入详情页
本回答由威孚半导体技术提供
Kimooo
2012-02-18 · 超过37用户采纳过TA的回答
知道小有建树答主
回答量:197
采纳率:0%
帮助的人:89.8万
展开全部
Repeater 控件用于显示重复的项目列表,这些项目被限制在该控件。Repeater 控件可被绑定到数据库表、XML 文件或者其他项目列表。这里,我们将展示如何把 XML 文件绑定到一个 Repeater 控件。
我们将在例子中使用下面的 XML 文件("cdcatalog.xml"):
<?xml version="1.0" encoding="ISO-8859-1"?>

<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</cd>
<cd>
<title>Hide your heart</title>
<artist>Bonnie Tyler</artist>
<country>UK</country>
<company>CBS Records</company>
<price>9.90</price>
<year>1988</year>
</cd>
<cd>
<title>Greatest Hits</title>
<artist>Dolly Parton</artist>
<country>USA</country>
<company>RCA</company>
<price>9.90</price>
<year>1982</year>
</cd>
<cd>
<title>Still got the blues</title>
<artist>Gary Moore</artist>
<country>UK</country>
<company>Virgin records</company>
<price>10.20</price>
<year>1990</year>
</cd>
<cd>
<title>Eros</title>
<artist>Eros Ramazzotti</artist>
<country>EU</country>
<company>BMG</company>
<price>9.90</price>
<year>1997</year>
</cd>
</catalog>
请查看该 XML 文件:cdcatalog.xml
首先,导入 "System.Data" 命名空间。我们需要此命名空间与 DataSet 对象一同工作。在 .aspx 页面的顶部包含下面这条指令:
<%@ Import Namespace="System.Data" %>
接下来,为这个 XML 文件创建一个 DataSet,并把此 XML 文件在页面首次加载时载入 DataSet:
<script runat="server">
sub Page_Load
if Not Page.IsPostBack then
dim mycdcatalog=New DataSet
mycdcatalog.ReadXml(MapPath("cdcatalog.xml"))
end if
end sub
然后我们在 .aspx 页面中创建一个 Repeater 控件。<HeaderTemplate> 元素中的内容在输出中仅出现一次,而 <ItemTemplate> 元素的内容会对应 DataSet 中的 "record" 重复出现,最后,<FooterTemplate> 的内容在输出中仅出现一次:
<html>
<body>

<form runat="server">
<asp:Repeater id="cdcatalog" runat="server">

<HeaderTemplate>
...
</HeaderTemplate>

<ItemTemplate>
...
</ItemTemplate>

<FooterTemplate>
...
</FooterTemplate>

</asp:Repeater>
</form>

</body>
</html>
然后我们添加可创建 DataSet 的脚本,并把这个 mycdcatalog DataSet 绑定到 Repeater 控件。我们同样用 HTML 标签来填充这个 Repeater 控件,并通过 <%#Container.DataItem("fieldname")%> 方法把数据项目绑定到 <ItemTemplate> 部分内的单元格:
<%@ Import Namespace="System.Data" %>

<script runat="server">
sub Page_Load
if Not Page.IsPostBack then
dim mycdcatalog=New DataSet
mycdcatalog.ReadXml(MapPath("cdcatalog.xml"))
cdcatalog.DataSource=mycdcatalog
cdcatalog.DataBind()
end if
end sub
</script>

<html>
<body>

<form runat="server">
<asp:Repeater id="cdcatalog" runat="server">

<HeaderTemplate>
<table border="1" width="100%">
<tr>
<th>Title</th>
<th>Artist</th>
<th>Country</th>
<th>Company</th>
<th>Price</th>
<th>Year</th>
</tr>
</HeaderTemplate>

<ItemTemplate>
<tr>
<td><%#Container.DataItem("title")%></td>
<td><%#Container.DataItem("artist")%></td>
<td><%#Container.DataItem("country")%></td>
<td><%#Container.DataItem("company")%></td>
<td><%#Container.DataItem("price")%></td>
<td><%#Container.DataItem("year")%></td>
</tr>
</ItemTemplate>

<FooterTemplate>
</table>
</FooterTemplate>

</asp:Repeater>
</form>

</body>
</html>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式