Top questions

Post

New Post


Find by name:

Question Answer
How can we force all the validation control to run? Options - Set EnableClientScript true - Page.IsValid() - Page.Validate CORRECT ANSWER : Page.Validate
How can we prevent browser from caching an ASPX page? We can SetNoStore on HttpCachePolicy object exposed by the Response object's Cache property: Response.Cache.SetNoStore (); Response.Write (DateTime.Now.ToLongTimeString ());
How do we ensure encrypted communication over the internet in ASP.NET? Options - Using windows authentication - By installing a server certificate and using HTTPS CORRECT ANSWER : By installing a server certificate and using HTTPS



Back to HomePage