introduction to asp .net

13
Introduction to ASP.NET development

Upload: umesh-patil

Post on 23-Jan-2017

82 views

Category:

Education


2 download

TRANSCRIPT

Page 1: Introduction to asp .net

Introduction to ASP.NET development

Page 2: Introduction to asp .net

Simply Server side language Simplified page development model Modular, well-factored, extensible architecture Superior debugging and tracing support Compiled, not interpreted Rich caching support Web farm scalable session state Automatically detects and recovers from errors

Asp.NET ?

Page 3: Introduction to asp .net

Request And Respond

Page 4: Introduction to asp .net

Client Side Scripting Server Side Scripting HTML JavaScript CSS JQuery Ajax XML

General Things to know

Page 5: Introduction to asp .net

Separate Code & Design Rich Web Forms Drag & Drop Design Like WinForms

Web Forms in .NET

Page 6: Introduction to asp .net

Page Directive Server side code Form Normal HTML Structure Server Controls

Understand the Web Form

Page 7: Introduction to asp .net

PreInit InitInit

Complete

PreLoad

LoadControl events

LoadComplet

ePre

Render

SaveStateComplet

eRender Unload

Page Life Cycle

Page 8: Introduction to asp .net

Post Back communicates back to the server

View State state stored in a hidden field on the page transported to the client and back to the server, Is not stored on the server

You must Know

Page 9: Introduction to asp .net

Session State allows the state of objects (serializable) to be

stored for a single session (lifetime of the user’s browser or specific timeout)

Application State allows the state of objects (serializable) to be

stored for the application across different sessions.

ASP.NET States

Page 10: Introduction to asp .net

Template to Other pages

Master Page

Page 11: Introduction to asp .net

Web Site Don’t use this, here for compatibility only Each page is dynamically loaded into memory Slow on first load after deployment No need to recompile for code change

Starting ASP.NET Development

Page 12: Introduction to asp .net

Web Application Recommended Compiles all pages into one DLL Faster on first load after deployment Must recompile whole site for code change

Starting ASP.NET Development ..

Page 13: Introduction to asp .net

Thank You!