7
Overview of ASP.NET Prepared By : Lec : Zalak Thakrar Follow Me on Face Book Group : V J MODHA STUDENT Website: www.zalakthakrar.com

Overview of ASP.NET Prepared By : Lec : Zalak Thakrar Follow Me on Face Book Group : V J MODHA STUDENT Website:

Embed Size (px)

Citation preview

Page 1: Overview of ASP.NET Prepared By : Lec : Zalak Thakrar Follow Me on Face Book Group : V J MODHA STUDENT Website:

Overview of ASP.NET

Prepared By : Lec : Zalak Thakrar

Follow Me on Face Book Group : V J MODHA STUDENT

Website: www.zalakthakrar.com

Page 2: Overview of ASP.NET Prepared By : Lec : Zalak Thakrar Follow Me on Face Book Group : V J MODHA STUDENT Website:

Classic ASP - Active Server Pages

Active Server Pages (ASP), also known as Classic ASP, was introduced in 1998 as Microsoft's first server side scripting engine.

ASP is a technology that enables scripts in web pages to be executed by an Internet server.

ASP pages have the file extension .asp, and are normally written in VBScript.

Page 3: Overview of ASP.NET Prepared By : Lec : Zalak Thakrar Follow Me on Face Book Group : V J MODHA STUDENT Website:

ASP.NET

ASP.NET is a new ASP generation. It is not compatible with Classic ASP, but ASP.NET may include Classic ASP.

ASP.NET pages are compiled, which makes them faster than Classic ASP.

ASP.NET has better language support, a large set of user controls, XML-based components, and integrated user authentication.

ASP.NET pages have the extension .aspx, and are normally written in VB (Visual Basic) or C# (C sharp).

User controls in ASP.NET can be written in different languages, including C++ and Java.

When a browser requests an ASP.NET file, the ASP.NET engine reads the file, compiles and executes the scripts in the file, and returns the result to the browser as plain HTML.

Page 4: Overview of ASP.NET Prepared By : Lec : Zalak Thakrar Follow Me on Face Book Group : V J MODHA STUDENT Website:

How asp.net Client Server Will Work

IIS SERVER

Page 5: Overview of ASP.NET Prepared By : Lec : Zalak Thakrar Follow Me on Face Book Group : V J MODHA STUDENT Website:

Asp.net Page Life Cycle

Page 6: Overview of ASP.NET Prepared By : Lec : Zalak Thakrar Follow Me on Face Book Group : V J MODHA STUDENT Website:

Files Type in ASP.NET

File Type Description.aspx The files having this extension are basically ASP.NET web pages. These basically

contains the User Interface

.ascx This file is called the ASP.NET User Control. A user control file is a simply text file which is saved with the extension "ascx". It does not contain html, body, and frame tag.

.asmx The files having extension .asmx are called ASP.NETWeb Services

web.config this file is basically XML-based configuration file for ASP.NET application. this file basically handles security, state management, and memory management issues

global.asa This file is basically used to define the global variables and to response to global events

.vb or .cs These files are basically code-behind files and are used to sperate the code from user interface(.aspx)

.sln, .suo These are files which are basically used by Visual Studio .NET to group togther projects. These files are only used during development

Page 7: Overview of ASP.NET Prepared By : Lec : Zalak Thakrar Follow Me on Face Book Group : V J MODHA STUDENT Website:

Thank YouFollow the Link