次のリピーターコードがあります。
<asp:Repeater ID="repMain" runat="server" OnItemCommand="repMain_ItemCommand" EnableViewState="false">
<ItemTemplate>
<dmg:testcontrol runat="server" MyData=<%#Container.DataItem %>>
</dmg:testcontrol>
</ItemTemplate>
</asp:Repeater>
testcontrol ユーザーコントロールは次のようになります。
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="TestControl.ascx.cs" Inherits="TestRepeater.TestControl" %>
<asp:Literal runat="server" ID="litMain" Text="<%#MyData.MyValue %>"></asp:Literal>
<asp:DropDownList runat="server" ID="dropdownMain"></asp:DropDownList>
<asp:Button runat="server" ID="btnMain" Text="Click Me" CommandName="Update" CommandArgument="<%#dropdownMain.SelectedValue%>"/>
CommandArgument として dropdownMain.SelectedValue を送信することは可能ですか?
今は空の文字列です。
ありがとう
ダンカン
PS これは、ASP.NET Repeater が ItemCommand の後にバインドされていないことに関連していますが、この 2 つは十分に異なると考えました。