ASP.Net Interview Question and Answers

1. What is ASP?
 
  • Active Server Pages(ASP), also known as Classic ASP, is a Microsoft’s server side technology, which helps in creating dynamic and user friendly Web pages.
  • It uses different scripting languages to create dynamic Web pages, which can be run on any type of browser.
 
CHANDU CHOWDARY,says Nov 30, 2018
Asp is a server side technology where you can create dynamic web pages using .net framework. *It uses different scripting languages to create dynamic Web pages, which can be run on any type of browser.
Rahman,says Jan 31, 2018
ASP.NET is a server side programming technology that makes use of object oriented programming approach.
Saran,says Dec 16, 2014
Asp in server side technology used to develop dynamic web pages.
Upee,says May 13, 2014
ASP.net is a server side technoliges and asp is using maintained server pages ASP.NET is provided as a framework which is collection of libraries and runtime.
Jyoti ramjan das,says May 08, 2014
Asp.net is techonology invented by microsoft where we can create dyanmic static web pages and also it support various scripting languages
Vinothkumar Ramachandiran,says May 04, 2014
  • ASP Supports ADO and ASP.NET Supports ADO.NET.
  • Event handling is not available in ASP but It is available in ASP.NET.
Nilsan,says May 04, 2014
Asp in server side technology to develop dynamic web pages using scripting languages.It is interpreted.
Parameshvar,says Apr 30, 2014
ASP.NET is web developing environment that is a part of .NET Framework and it provide object oriented programming language,and easy to dynamic web pages development.
Rahul,says Apr 13, 2014
Asp .NET is a development tool through which i develop a application. it provide object oriented programming language and here we can design any type of web page with HTML, CSS, XML, JavaScript and for database management we can use Sql server, Access Database and for programming language we can use VB, C#.
Ravichandran perumal,says Feb 25, 2014
ASP.Net is a Microsoft Technology , which is used to create effective, dynamic and data driven webpages.
Vishal,says Feb 15, 2014
Asp is a server side technology where you can create dynamic web pages using .net framework.
Nasim Ahmad,says Feb 15, 2014
Active Server Pages(ASP), also known as Classic ASP, is a Microsoft’s server side technology, which helps in creating dynamic and user friendly and set of specifications to buid web applications with serverside coding, specifications can be implemented using .NET language ASP.NET.
Narayan,says Feb 12, 2014
The ASP.NET is just a technology that provide a set of specifications to create web applications with server side code programs pages.
Kalpana,says Jan 31, 2014
ASP.NET is provided as a framework which is collection of libraries and runtime.
Gautam,says Jan 23, 2014
Asp.net is server side of programming language which provide enable us to create Application on different programming language and scripting language as well.
Dineshkumar Perumal,says Jan 21, 2014
ASP.NET is a server side technology, that enables user to create and build the applications.
Abhishek Pandey ,says Jan 17,2014
Actually asp.net is a technology which is used with any .net language to create a web application.
Adyasakti swain,says Jan 14,2014
ASP.NET is provided as a framework which is collection of libraries and runtime.
Suresh,says Jan 04,2014
ASP.NET is web developing environment that is a part of .net framework.its way to develop the dynamic web application.
Mounika,says Jan 04,2014
ASP.NET is a technology providing set of specifications to buid web applications with serverside coding, specifications can be implemented using .NET language. ASP.NET= .NET languages programming + collection of intrensic objects.
Santanu Chakraborty, says Dec 31,2013
ASP.NET is web developing environment that is a part of .NET Framework and it provide object oriented programming language and here we can design any type of web page with HTML, CSS, XML, JavaScript and for database management we can use Sql server, Access Database and for programming language we can use VB, C#.
Suganya,says Nov 27, 2013
ASP.NET is a development framework for building web pages and web sites with HTML, CSS, JavaScript and server scripting.
Your Name Your Email-ID
Your Answer
2. What is the difference between Classic ASP and ASP.Net?
 
    ASP is Interpreted language based on scripting languages like Jscript or VBScript.
  • ASP has Mixed HTML and coding logic.
  • Limited development and debugging tools available.
  • Limited OOPS support.
  • Limited session and application state management.
  • ASP.Net is supported by compiler and has compiled language support.
  • Separate code and design logic possible.
  • Variety of compilers and tools available including the Visual studio.Net.
  • Completely Object Oriented.
  • Complete session and application state management.
  • Full XML Support for easy data exchange.
 
Your Name Your Email-ID
Your Answer
3. What is ASP.NET?
  ASP.NET is a server side scripting technology that enables scripts (embedded in web pages) to be executed by an Internet server.
  • ASP.NET is a specification developed by Microsoft to create dynamic Web applications, Web sites and Web services.
  • It is a part of .NET Framework.
  • The ASP.NET compiles the Web Pages and provides much better performance than scripting languages, such as VBScript.
  • The Web Forms support to create powerful forms based Web pages.
  • ASP.NET Web server controls to create interactive Web applications with the help of Web server controls, you can easily create a Web application.
 
Your Name Your Email-ID
Your Answer
4. What is a Cookie?
 
  • Cookie is a lightweight executable program, which the server posts to client machines.
  • Cookies store the identity of a user at the first visit of the Web site and validate them later of the next visits for their authenticity.
  • The values of a cookie can be transferred between the user’s request and the server’s response.
 
CHANDU CHOWDARY,says Nov 30, 2018
Cookie is variable which is used to store small amount of infomation.COOKIES is client side state Management technique.Cookies is stored 4096 bits of information 4kb inform.Cookies can stored the data in plan text format.
Roopali aggarwal,says Apr 10,2014
Cookies is store infromation client side .cookies use to store small pieces of information related to a user computer,such as its Ip address,browser type, operating system and web page last visited.the purpose of storing this information is to offer a personalized experience to the user.eg. if a user has logged on to your website for the first time the name of user can be store in a cookies.
Richa,says Mar 31,2014
Cookies are small pieces of text, stored on the client’s computer to be used only by the website setting the cookies. This allows web applications to save information for the user, and then re–use it on each page if needed. Here is an example where we save a users choice of background color.
Your Name Your Email-ID
Your Answer
5. What is the difference between ASP Session State and ASP.Net Session State?
  ASP session state relies on cookies, Serialize all requests from a client, does not survive process shutdown, Can not maintained across machines in a Web farm.
 
Khaleelshines, said Feb 03,2014
In Asp, the session is Process dependent, whereas in Asp.Net the session is Process independent. In Asp, the session is Cookie dependent, whereas in Asp.Net the session is Cookie independent.
Your Name Your Email-ID
Your Answer