ASP.Net Interview Question and Answers

86. How information about the user’s locale can be accessed?
  The information regarding a user’s locale can be accessed by using the System.Web.UI.Page.Culture property.
 
Your Name Your Email-ID
Your Answer
87. What is the difference between javascript and vbscript?
  Javascript :
JavaScript is a client-side scripting language.
JavaScript is used to create interactive web applications supported by the Netscape browser.
JavaScript is simple to use, lightweight, and dynamic. Developers can easily embed code functionality for interactive applications inside a web page.
Javascript is case sensitive and it will be run on client side.
VBScript:
VBScript is a server-side scripting language.
VBScript is not case sensitive and it will be run on server side.
 
Your Name Your Email-ID
Your Answer
88. What is a web server?
  A web server delivers requested web pages to users who enter the URL in a web browser. Every computer on the Internet that contains a web site must have a web server program.
 
Your Name Your Email-ID
Your Answer
89. What file extension does ASP.NET use for Web Services?
  ASP.NET uses the .asmx extension for Web Service files.
 
Your Name Your Email-ID
Your Answer
90. What is the base class of .net?
  System.object
 
Your Name Your Email-ID
Your Answer