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

Write the different features of a Thread and a Process?

0 Answers   Siebel,


Which object is used to encapsulate the state of the client and the browser in ASP.NET?

0 Answers   Sans Pareil IT Services,


what is meant by sitemapnode ?

0 Answers   Netsweeper,


What is the difference between runtime version and version?

0 Answers  


How can you pass multiple complex types in Web API?

0 Answers  






When would you set a control's AutoPostBack property to true?

1 Answers  


In order to bind the data from a data source to the Repeater control what property is set and what method must you call in your code,?

0 Answers   Siebel,


What is globalization and localization in asp net?

0 Answers  


State management in asp.net ?

8 Answers   Accenture,


Can you dynamically assign a Master Page?

0 Answers   MCN Solutions,


Caching techniques in .NET ?

1 Answers   Microsoft,


Is There any Third party tools are using in .Net Technologies? Can u Explain?

4 Answers   HCL,


Categories