Posted: 5/18/2010
Hello Experts,
In my application I am binding a Repeater on DropDownList selected index change event with postback.
But I want to this without postback(onClientSide).
Is it possible?
Thanks in advance.
Posted: 6/9/2010
Probably you do bind the Repeater on server side.
If you want to not post back the whole page, use Ajax.
Put the repeater and the DropDownList inside the UpdatePanel. Make the UpdatePanel to trigger on DropDownList_SelectedIndexChanged event of the DropDownList and it will do the job you need ;).
Regards,Hajan
Posted: 6/11/2010
Mohit you need to play with client side templates then. Client side only knows about HTML that's it it has nothing to deal with repeater or datalist etc. Go for jquery templates.