If I have the following ListView with codebehind in c#. How do I link it with the control. The handles event in VB handles it, but how do I do it in c#?
<asp:ListView ID="ListView" runat="server"
OnSelectedIndexChanged="ListView_SelectedIndexChanged()"
</Asp:ListView>protected void ListView_SelectedIndexChanged(object sender, ListViewSelectEventArgs e) { }