ASP.Net Important Notes

Q. What is ASP?
Active Server Pages (ASP), is a Microsoft's server-side technology, which helps to creating dynamic and user-friendly Web pages.


Q. What is ASP.Net?
ASP.NET is a development framework for building web pages and web sites with HTML, CSS, JavaScript and server scripting.


Q. Advantage of ASP.net?
Compiled Code
Language Support
Strict Coding Requirements
Event-Driven Programming Model
Third-Party Controls
User Authentication
Easier Configuration & Deployment
Object and Page Caching
Higher Scalability

Q. What is View State?
View state is the method that the ASP.NET page framework uses to preserve page and control values between round trips. When the HTML markup for the page is rendered, the current state of the page and values that must be retained during postback are serialized into base64-encoded strings.

Q. What is a Cookie?
A cookie is often used to identify a user. A cookie is a small file that the server embeds on the user's computer. Each time the same computer requests a page with a browser, it will send the cookie too. With ASP, you can both create and retrieve cookie values.


Q. What is .Net Framework
.Net Framework is programming infrastructure created by Microsoft for building, deploying and running application and services that use .Net technologies. The .Net Framework contain tow major parts: Common Language Runtime, Framework Library.


Q. What is Entity Framework
Entity Framework (EF) is an object-relational mapper that enables .NET developers to work with relational data using domain-specific objects. It eliminates the need for most of the data-access code that developers usually need to write.


Q. What is SQL Server
SQL Server is Relation Database Management System from Microsoft that design for the enterprise environment.


Q. What is Linq
Linq is Language Integrated Query is a set of feature introduced in visual studio 2008 that extends powerful query capabilities to the language syntax of C# and Visual Basic.


Q. What is N-Tier Architecture
In software engineering, multi-tier architecture (often referred to as n-tier architecture) is client-server architecture in which presentation, application processing and data management functions are physically separated.


Q. What is MVC
MVC is one of three Asp.Net programming models. MVC is a framework for building web application using (Model View Controller) design. The Model represent the application core. The View Display the Data.


Q. What is Silver Light
Silver light is cross browser, cross platform plug-in for delivering media and rich interactive application for the web. The Silver light browser plug-in is freely available for all major browsers including Mozilla Firefox, Apple's  Safari and Windows Internet Explorer.


Q. What is Razor
Razor is a simple syntax view engine and was released as part of Asp.Net MVC 3 and the Microsoft Web Matrix tool set.

Comments