views:

58

answers:

2

is it possible? say with the listview?

+1  A: 

You need to set the ChildrenAsTriggers attribute to true in order for this work as you expect.

Jose Basilio
tried that, same thing, enter page loads when i click edit or update
Erx_VB.NExT.Coder
Post the relevant part of the code. It will make it easier to provide you with an answer.
Jose Basilio
Done, posted the relevant parts
Erx_VB.NExT.Coder
A: 

This is the relevant part of code

<asp:UpdatePanel 
    ID="upComments" runat="server" 
    UpdateMode="Conditional" ChildrenAsTriggers="true">

<ContentTemplate>
    <asp:ListView ID="lvComments" runat="server" DataSourceID="dsComments">
Erx_VB.NExT.Coder
(btw, the preferred way of updating your question is to edit the original question, not add a new answer)
Groo