我加一個ItemTemplate我radlistbox並在其添加一個標籤和兩個LinkButton的(S)...
我radlistbox是象下面這樣:如何認識一個LinkButton的CommandName的一個ItemTemplate裏面房顫RadListBox
<telerik:RadListBox ID="RadlbOfImageGroup" runat="server" DataKeyField="ID" DataSortField="Title"
DataSourceID="sdsImagesGroup" DataTextField="Title" DataValueField="ID" Skin="BlackByMe"
EnableEmbeddedSkins="False" Width="260px" Height="365px" EmptyMessage="no rec!"
AutoPostBack="True" OnSelectedIndexChanged="RadlbOfImageGroup_SelectedIndexChanged"
CausesValidation="False">
<ItemTemplate>
<table style="width: 100%;">
<tr style="width: 100%;">
<td style="width: 64%;">
<asp:Label ID="lblTitleOfIG" runat="server" CssClass="lbl_ListBox_IG_Title" Text='<%# Eval("Title") %>'></asp:Label>
</td>
<td style="width: 18%; text-align: center;">
<asp:LinkButton ID="lbEditIG" runat="server" CausesValidation="False" CommandName="Edit"
CssClass="lb_ListBox_IG" OnClick="lbEditIG_Click">Edit</asp:LinkButton>
</td>
<td style="width: 18%; text-align: center;">
<asp:LinkButton ID="lbDeleteIG" runat="server" CausesValidation="False" CommandName="Delete"
CssClass="lb_ListBox_IG" OnClick="lbDeleteIG_Click">Delete</asp:LinkButton>
</td>
</tr>
</table>
</ItemTemplate>
</telerik:RadListBox>
我的問題是如何檢查上面代碼中的LinkButtons的CommandName,當我點擊它們時? (我們沒有訪問CodeBehind中的這些LinkButtons)
我知道我們不需要CommandName爲那些LinkButtons /我只想知道是否有可能從代碼隱藏中讀取它們?
嗨,你需要什麼的'CommandName'呢?我只是想知道'OnCommand'會是更好的選擇嗎? – Arj 2011-05-15 21:31:41
嗨,親愛的朋友/這只是一個示例/例如,我怎麼能從CodeBehind更改所有LinkButton的前景色? – MoonLight 2011-05-16 05:04:29