what does Page.IsValid in asp.net

Answers were Sorted based on User's Feedback



what does Page.IsValid in asp.net..

Answer / vicky

The Page.IsValid property tells you whether the validation
succeeded or not.

Is This Answer Correct ?    33 Yes 7 No

what does Page.IsValid in asp.net..

Answer / debasmit samal

Page..::.IsValid Property
Gets a value indicating whether page validation succeeded.

Is This Answer Correct ?    14 Yes 3 No

what does Page.IsValid in asp.net..

Answer / ranjit singh

true if page validation succeeded; otherwise, false
private void ValidateBtn_Click(Object Sender, EventArgs E)
{
Page.Validate();
if (Page.IsValid == true)
lblOutput.Text = "Page is Valid!";
else
lblOutput.Text = "Some required fields are empty.";
}

Is This Answer Correct ?    14 Yes 3 No

what does Page.IsValid in asp.net..

Answer / rajesh sharma

The Page.IsValid property tells you whether the validation
succeeded or not. It can be called only after the
Page.Validiate method is called. By using this property,
you can add logic to your page to determine whether to
proceed with the PostBack event or not

Is This Answer Correct ?    11 Yes 8 No

what does Page.IsValid in asp.net..

Answer / ritesh jaiswal

Page.IsValid is use to validate the validation field if
client side ajax validation control is off due to hacker or
else any other reason

Is This Answer Correct ?    4 Yes 2 No

what does Page.IsValid in asp.net..

Answer / joseph.v.a

The Page.IsValid property tells you whether the validation
succeeded or not.

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

What is difference between session and application in asp net?

0 Answers  


Explain how can we access static variable?

0 Answers  


How do you do exception management

1 Answers   Infosys,


Explain form level validation and field level validation?

0 Answers  


Explain an object, class and method.

0 Answers  






What should you do is you want to remove an existing component but would like to make some funtionalities?

0 Answers  


Difference between Array and ArrayList? How Array is benifitful than ArrayList?

3 Answers   Tech Mahindra,


Asp pages that worked pefectly on windows 2000 server and iis 5.0 do not work on windows 2003 server with iis 6.0. Asp.net pages work fine. Why?

0 Answers  


What is session handling in a webfarm, how it can work with its limits?

0 Answers   Siebel,


What is the name of the base class that all web forms will be inherited?

7 Answers  


What is the purpose of asp.net?

0 Answers  


Where can we set the specific variables for a application and Session objects ?

2 Answers   Siebel,


Categories