5
Answers

problem while returning to a home page

sachi vasishta

sachi vasishta

15y
3.2k
1
Hi,

In a webform I have four textboxes and two dropdownlists and for all these I have used requiredfieldValidator. I have two buttons "Add" and "Return". The Add button adds the values of textboxes and ddlist  to the database. The Return button takes control back to the home page. My problem is when all the textboxes and dropdownlist fields are empty if I click Return button then it wont take back to the home page as all fields are empty, but if the textboxes and ddlist are filled with some values then it moves back to the home page. how to overcome this?

Thanks
Answers (5)
0
Purushottam Rathore

Purushottam Rathore

20 8.9k 6.6m 15y

Hi Sachi
use CausesValidation="false" on 'Return button' like as follows:
<asp:Button ID="btnReturn" runat="server" Text="Return to Home" CausesValidation="false" OnClick="btnReturn_Click" />
Please mark if this post is helpful for you.
Accepted
0
keshav singh

keshav singh

NA 625 175.7k 15y
you can set the property

causevalidation =false of button control
0
sachi vasishta

sachi vasishta

NA 277 0 15y
Thanks Purshi
0
Kirtan Patel

Kirtan Patel

NA 35k 2.8m 15y
Hi Sachi,

Set (Give Same Group Name in)
ValidationGroup Propertie of that 4 Text boxes and And "Add" Button and Validation Controls

 . so that Those 4 TextBox and "Add" button Will act as  Isolated Validations so it will not Prevent you to Go

back By return Button :)

if still need help then let me know

if it solves you problem then check "Do you like this Answer check box :)






0
Gaurish Kumar

Gaurish Kumar

NA 912 0 15y
Hi

Add the property CausesValidation="False" in your return button.

Then it will work