Prevent Postback in array of linkbutton is created at dynamically
i have created Array of Linkbutton and when user click on link button it will create an array of Radio Buttons but it requires开发者_如何学编程 Postback all time so page load takes more time... what is solution of it??
Use asp.net Ajax update panel. Put link buttons and panel/view (or what ever control you are using ) update panel.
I am not sure if I am following a 100% but if you don't want to do a post back then your going to need to write some javascript(or use a framework like jquery) to generate radio buttons when the user clicks the link button(plus you probably don't want to use a link button then as it will try to always cause a postback or you will need to stop the post back from happening).
精彩评论