我有用戶控件,它在項目模板中有linkbutton,我試圖在代碼後面捕獲Itemcommand事件,但事件沒有被解僱。ListView中的ItemCommand未在用戶控件中觸發
我已經通過了其他類似的問題,但它沒有幫助我。下面是我的代碼片斷,有誰能幫我解決這個問題嗎?
Listview-
<asp:ListView runat="server" ID="lvTherapeuticAlternatives" OnItemCommand="TherapeuticAlternatives_OnItemCommand">
ItemTemplate-
<ItemTemplate>
<tr class='data'>
<td style="width:210px;">
<asp:LinkButton ID="lnkMedSelection" runat="server" CommandName="SelectedMed" CommandArgument='<%#Eval("NDC") & ", " & Eval("DrugGenericProductID") %>' >
<asp:Label ID="lblDrugName" runat="server" Text='<%# Eval("DrugDescription") %>' />
</asp:LinkButton >
</td>
<td style="width:70px;" align="center">
<asp:Label ID="lblBrandGeneric" runat="server" Text='<%# Eval("descBrandGeneric") %>' />
</td>
<td style="width:110px;" align="center">
<asp:Label ID="lblStatus" runat="server" Text='<%# Eval("FormularyStatusDescription") %>' />
</td>
<td style="width:210px;" align="left">
<asp:Label ID="lblFlat" runat="server" Text='<%# Eval("CopayInfo") %>' />
</td>
</tr>
</ItemTemplate>
Codebehind-
Protected Sub TherapeuticAlternatives_OnItemCommand(ByVal sender As Object, ByVal e As ListViewCommandEventArgs) Handles lvTherapeuticAlternatives.ItemCommand
End Sub
感謝您的評論。 – Senthil
我在列表視圖控件中有鏈接按鈕。它是 - asp:LinkButton ID =「lnkMedSelection」runat =「server」CommandName =「SelectedMed」CommandArgument ='<%#Eval(「NDC」)&「,」&Eval(「DrugGenericProductID」)%>' – Senthil
@Senthil沒問題,但是這對你有幫助嗎?你知道你需要做什麼才能解決這個事件嗎? – Icarus