Hi all,
I have created a web page with ajax support. In that i have two buttons and three textbox.
All the three textboxes having required field validator attached to them. Now while i am trying to do asynchronous postback it is not possible for me because the required field validator prompts me to enter values. Is there any way to get rid of this...
I would like to do asynchronous postback even though ther are validators on the page
Do u set the same value to propertie ValidationGroup for validators and the button that cause the validation?
This will not cause validation :
<asp:button ID="someButton"CausesValidation="false" runat="server" />
Hi SathishRaja,
My understanding of your issue is that you want to get rid of the validation when click the button which will normally fire the validators. If I have misunderstood, please feel free to let me know.
As far as I know, there are three methods to achieve this list below:
Solution 1
Thanks Solution 2 is Working fine for me.
No comments:
Post a Comment