If we add a textbox and give the required field
validator,and i add two radio buttons 1 is yes another one
is No.And i add another one server control button ,if i
click the button ,if the radio button Yes is checked the
validation control is fired ,if no the validation control
is not fired.So what you used to solve this problem.
Answer Posted / yogesh sharma
Set both radio buttons AutoPostBack property to true.
and following code in page_load:
if (RadioButtonNo.Checked == true)
{
this.Button1.CausesValidation = false;
}
else
{
this.Button1.CausesValidation = true;
}
| Is This Answer Correct ? | 16 Yes | 9 No |
Post New Answer View All Answers
Explain the difference between debug.write and trace.write?
Why viewstate is used in asp.net?
Explain the disadvantages of viewstate?
What are the differences between the response.write() and response.output.write()?
What is the use of execute non query in asp.net?
Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?
Where is the session stored?
Hi All, Im an MCA holder with 3+ years of experience in asp.net. Now i want to move to some good government job. I have no idea about different categories of exams held & which one can be applicable for my education background. I have done B.A with MCA. Please help me out with your valuable suggestions. I would be very grateful. Thanks Anuj
Why we are using mvc instead of asp.net? : Asp.Net MVC
What is query string with example?
How to retrieve user name in case of Window Authentication?
Explain the difference between Web Garden and Web Farm?
What is difference in .net 1.1 and .net 2.0?
Is asp.net mvc still used? : Asp.Net MVC
What is the compiled object?