473,657 Members | 2,513 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to Ignore the RequiredFieldVa lidator when i click on Cancel.

RSB
Hi every one ,

i am creating this form and i have two asp:Linkbuttons one for save and one
for Cancel.

Now i also have some RequiredFieldVa lidators on this Form and i only want to
Execute those once i click on Save but not when i click Cancel.

Also for the Cancel button i am executing some code at the Server to take
some actions.

please help.
Thanks

RSB
Nov 18 '05 #1
3 2222
this question was asked yesterday i guess..
set CausesValidatio n property to false for that button.

Av.
"RSB" <rs*****@hotmai l.com> wrote in message
news:kL******** ********@news.c pqcorp.net...
Hi every one ,

i am creating this form and i have two asp:Linkbuttons one for save and
one
for Cancel.

Now i also have some RequiredFieldVa lidators on this Form and i only want
to
Execute those once i click on Save but not when i click Cancel.

Also for the Cancel button i am executing some code at the Server to take
some actions.

please help.
Thanks

RSB

Nov 18 '05 #2
Hi RSB,

The solution is again very simple. If you are dont want to execute any
validators getting fired you can set the causes validation to false for the
cancel linkbutton, this will allow you to post the form without the
validators getting fired.

You may also try disabling the validators which you dont want to get fired
on client side using javascript on the click of cancel link button. This
exercise of disabling the validators you also need to do on the
btncancel_click on server and proceed with what all validations you want to
do on the server.

HTH
Regards
Ashish M Bhonkiya

"RSB" <rs*****@hotmai l.com> wrote in message
news:kL******** ********@news.c pqcorp.net...
Hi every one ,

i am creating this form and i have two asp:Linkbuttons one for save and one for Cancel.

Now i also have some RequiredFieldVa lidators on this Form and i only want to Execute those once i click on Save but not when i click Cancel.

Also for the Cancel button i am executing some code at the Server to take
some actions.

please help.
Thanks

RSB

Nov 18 '05 #3
Set the CausesValidatio n property of the Cancel button to false .
Nov 18 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
2148
by: BK | last post by:
I'm having a really strange problem with and HtmlSelect server control (listbox) and a RequiredFieldValidator that I am trying to use to make sure that someone has items in the listbox. The way that the HtmlSelect is populated is via a combination of client-side javascript and another aspx page (launched by the javascript). Anyway, everything seems to work just fine in terms of populating the HtmlSelect. However, when I postback the...
10
2204
by: john | last post by:
I want the page to completely ignore all mouse clicks. I can create the onmouseclick event and return false, but that only disables certain types of things. I can still, for example, click in a text box and then type something or change the selection in a dropdown list. I tried returning false in the onmousedown event, but that didn't do the trick. I'd rather not have to disabled all the controls on the page. Any ideas? Thanks in advance,...
3
5567
by: Mvk | last post by:
Hi; I have a simple aspx form. I have put a textbox and 2 buttons on it. The textbox is linked to a requiredfieldvalidator. Click on button 1 (= ok button) = Store value in textbox in database. Click on button 2 (= cancel button) = Redirect with Response.Redirect("AnotherPage.aspx") Now I have the following problem. When I click on the "Cancel"-button the
4
10032
by: James | last post by:
Hello, I have a RequiredFieldValidator for several textbox controls on a form. Here's an example with the RequiredFieldValidator. EnableClientScript, Enabled, and Visible are set to true for the RequiredFieldValidator. <asp:textbox id="FirstName" MaxLength="25" runat="server"></asp:textbox>
2
1398
by: Dave | last post by:
Hello. I have the web form where user can input some data in textboxes, I'm validating user input with RequiredFieldValidator controls, then I have two buttons "OK" and "Cancel". Now when I press "OK" the RequiredFieldValidator works fine, but when I press "Cancel" I don't want to validate inputs. So how can I temporarily disable RequiredFieldValidator, because I want press "Cancel" and handle some actions at server side?
1
1607
by: JJ | last post by:
We have an ASP.NET web form with 1 TextBox, 2 LinkButtons, and 1 RequireFieldValidator. The situation is: the user needs to enter a folder name in the TextBox and click the first LinkButton (the Create Folder LinkButton) to create the folder. Then once that's done, they need to click the second LinkButton (the Next LinkButton) to go to the next page (a rudimentary wizard). The RequiredFieldValidator is there to make sure the user...
5
1640
by: Hazz | last post by:
I needed to provide client side validation for a web forms text box, radio button list, and drop down list. I asked two developers I work with what they thought I should do. One said Javascript, the other the Validation Controls. I chose the RequiredFieldValidator although I had done considerable work with Javascript in my ASP days. In 3-5 minutes I had two controls validated and working. It took me a little longer with the drop down...
2
2090
by: Hongbo | last post by:
Hi, I have a Asp.Net written in C#. It serve as information input form. The form encounters sort of random problem with the email field and state field. I have validator attached with these 2 fields as the following: ===== <form id="creditcardform" method="post" runat="server"> Email: <asp:textbox id="txtBillEmail" maxlength="50" width="200" runat="server" /> <asp:requiredfieldvalidator id="vp10" runat="server" initialvalue="" ...
1
1593
by: Ganesh | last post by:
Hi There, I've a validation control in my page, In some cases i don't want to check the validation like when users click cancel, i'l take the page to home page. But it checks always validation. How can i ignore the validation when i click cancel Thanks Ganesh
0
8413
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8324
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8842
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8740
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8513
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
5642
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4173
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1970
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1733
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.