Click to See Complete Forum and Search --> : Bind Grid With Out Post Pack ???


prasannadevarajan
June 16th, 2009, 05:28 AM
Hi all,
I have a very simple querry... Am using a GridView for binding datas and manipulating it such as amount calculations.... Is there a where to bind that GridView without PostBacking ???? If Yes Please Let me know.

Thanks and Regards for Your Time,
Prasanna


.Net FrameWork 2.0
ASP.NET C#

dannystommen
June 16th, 2009, 06:54 AM
Handling events (when editing/inserting/deleting on a gridview) allways requiers an postback.

If you switch to .Net 3.5, you can use an UpdatePanel. In that case, you won't notice the postback at the client.

prasannadevarajan
June 16th, 2009, 07:40 AM
Handling events (when editing/inserting/deleting on a gridview) allways requiers an postback.

If you switch to .Net 3.5, you can use an UpdatePanel. In that case, you won't notice the postback at the client.


editting and all is fine danny... but if i generate GridRows dynamically using a UpdatePanel i cannot read the rows that are created (i.e) ClientId Is not generated for the newly added Rows since i need to calculate total amount and so accordingly of that Grid fields.

Wat Exactly an 3.5 UpdatePanel Do ???? ... Events (when editing/inserting/deleting on a gridview) also will not PostBack By Using UpdatePanel in 3.5 ????

can ya be clear on 3.5 UpdatePanel with that of 2.0's

.Net FrameWork 2.0
ASP.NET C#