Hi,
I am using the webimagebutton to modify a database record, (save the current view as default). The data gets saves when the vb code behind is executed, but the page does a postback and reloads with the original defaults. How can i stop the postback after the code behind executes?
Thanks
Hello,
Thank you for contacting Infragistics!
You can achieve a partial postback but putting the WebImageButton in an ASP UpdatePanel. Then when the postback occurs it will only update the part of the page that is inside the update panel.
I forgot to add that setting AutoSubmit="false" stops the postback sure, but also stop the code behind from executing.
Any help would be greatly appreciated.