SlideShare a Scribd company logo
1 of 16
NITHIYAPRIYAPASAVARAJ
ASP.NET INTRODUCTION
 ASP.NET is a web development platform, which provides a
programming model, a comprehensive software infrastructure and
various services required to build up robust web applications for
PC, as well as mobile devices.
 ASP.NET is used to produce interactive, data-driven web
applications over the internet. It consists of a large number of
controls such as text boxes, buttons, and labels for assembling,
configuring, and manipulating code to create HTML pages.
ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
 ASP.NET works on top of the HTTP protocol, and uses
the HTTP commands and policies to set a browser-to-
server bilateral communication and cooperation.
 ASP.NET is a part of Microsoft .NET platform. ASP.NET
applications are compiled codes, written using the
extensible and reusable components or objects present in
.NET framework. These codes can use the entire hierarchy
of classes in .NET framework.
ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
 The ASP.NET application codes can be written in any of
the following languages:
C#
Visual Basic.Net
Jscript
J#
ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
Features of ASP.NET
 Microsoft's ASP.NET, one of the most successful web
application development frameworks ever, is fast becoming
mature – the newest version of it is ASP.NET 4.5.
 You can use ASP.NET to fast develop and deploy highly
scalable, high-performance web applications in a managed
environment.
 ASP.NET 4.5 ships as part of part of Visual Studio 2012 and
contains many new and extended features.
ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
 Some of the ASP.NET 4.5 features are,
 Building and Minification feature
 Strongly typed Data controls
 Model Binding – Isolating the web form from the model
 Value providers
 Support for OpenID on OAuth Logins
 Support for improved paging in ASP.NET4.5 Grid view Control
 Enhanced support for asynchronous programming
 Support for web sockets
 Support for HTML5 form types
 ASP.NET Web API
ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
1 .Bundling and Minification Feature
 The newly introduced bundling and minification feature helps
to bundle and minimize the size of the scripts and style sheets
in your application.
 This feature has a great impact on the performance of your web
application as a whole. You now have a
System.Web.Optimization namespace that provides support for
bundling and Minification of files.
 Once you create a new project in ASP.NET 4.5, you'll notice
these lines in your Global.asax file:
protected void Application_Start()
{
//Some code
BundleTable.Bundles.RegisterTemplateBundles();
}
ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
2 . Strongly Typed Data Controls
 ASP.NET 4.5, have data controls that can be strongly typed, That
will get intellisense where user just need to assign the ItemType
property to a model that is going to be associated with the data
controls used in “.aspx” pages.
 Here is a snippet of code that illustrates how you can use this:
<asp:TemplateField HeaderText="Name" >
<ItemTemplate>
<%# Item.Name.ToString() %>
</ItemTemplate>
</asp:TemplateField>
ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
3 . Model Binding - Isolating the Web Form from the
Model
 The Model binding feature in ASP.NET 4.5 enables users to develop Web
forms, that are independent of the Model that populates the view.
 The biggest advantage of using Model Binding in ASP.NET is that the user
can easily unit test the methods.
 In ASP.NET 4.5 support for model binding is provided through the usage of
the ‘System.Web.ModelBinding’ namespace.
 This namespace contains value provider classes like ControlAttribute,
QueryStringAttribute, etc.
 All these classes are inherited from the ValueProviderSourceAttribute class.
ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
4 . Value Providers
 ASP.NET4.5 provides many Value Providers that can be
used to filter data.
Query string
Session
Cookie
Control Value
 User can also have their own custom value providers.
ASP.NET OVERVIEW - NITHIYAPRIYA
PASAVARAJ
5 .Support for OpenID in OAuth
Logins
 ASP.NET 4.5 provides support for OpenID for OAuth
logins .
 User can easily use external services to login to their
application.
ASP.NET 4.5 enables us to register OAuth provider in the
App_Start/AuthConfig.cs file.
We can also use this data dictionary to pass additional data.
ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
6. Support for improved paging in ASP.NET
4.5 GridView control
 Paging support in ASP.NET 4.5 GridView control has
been improved a lot.
“GridView.AllowCustomPaging” property provides great
support for paging and sorting through large amounts of
data efficiently.
ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
7. Enhanced support for
asynchronous programming
 ASP.NET 4.5 provides excellent support in asynchronous
programming .
 User can now read and write HTTP requests and responses
without the need of OS threads.
 Also, you have support for two new keywords - await and
async.
ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
8.Support for web sockets
 HTML5 WebSockets allow us to perform duplex
communication between the client browser and the web
server.
 ASP.NET 4.5 and IIS 8 provide support for WebSockets
protocol where user can now leverage WebSockets in their
ASP.NET web applications.
 Support for web sockets is provided through the
“System.Net.WebSockets” namespace.
ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
9.Support for HTML5 form types
 ASP.NET 4.5 provides excellent support for HTML5 form types.
 The following are the list of new controls available in HTML5:
email
url
number
range
Date pickers( i.e., date, month, week, time, datetime, datetime-local)
search
color
ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
10. ASP.NET Web API
 Web API is included in ASP.NET MVC 4 and ASP.NET
Web Forms, which helps us to build and consume HTTP
services easily.
 Microsoft's ASP.NET is a language and platform-neutral
and interoperable technology.
 It is one of the most successful web technologies till date.
 It has matured over the years with the latest version,
ASP.NET 4.5, having a number of new features and
enhancements.
ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ

More Related Content

What's hot

ASP.Net | Sabin Saleem
ASP.Net | Sabin SaleemASP.Net | Sabin Saleem
ASP.Net | Sabin SaleemSaBin SaleEm
 
An overview of microsoft mvc dot net
An overview of microsoft mvc dot netAn overview of microsoft mvc dot net
An overview of microsoft mvc dot netneha sharma
 
Anypoint data gateway
Anypoint data gatewayAnypoint data gateway
Anypoint data gatewayMohammed246
 
CloudHub networking guide
CloudHub networking guideCloudHub networking guide
CloudHub networking guideShanky Gupta
 
Development Journey of the Shopware Administration
Development Journey of the Shopware AdministrationDevelopment Journey of the Shopware Administration
Development Journey of the Shopware Administrationklarstil
 
Integration with Microsoft CRM using Mule ESB
Integration with Microsoft CRM using Mule ESBIntegration with Microsoft CRM using Mule ESB
Integration with Microsoft CRM using Mule ESBSanjeet Pandey
 
Mule addcontactsintosalesforce
Mule addcontactsintosalesforceMule addcontactsintosalesforce
Mule addcontactsintosalesforcehimajareddys
 
Query Operation in Microsoft SharePoint using Mule ESB
Query Operation in Microsoft SharePoint using Mule ESBQuery Operation in Microsoft SharePoint using Mule ESB
Query Operation in Microsoft SharePoint using Mule ESBSanjeet Pandey
 
Mule esb–api layer
Mule esb–api layerMule esb–api layer
Mule esb–api layercharan teja R
 
Automatic documentation with mule
Automatic documentation with muleAutomatic documentation with mule
Automatic documentation with muleF K
 
Mule microsoft environment
Mule  microsoft environmentMule  microsoft environment
Mule microsoft environmentcharan teja R
 
Integration with Salesforce using Mule ESB
Integration with Salesforce using Mule ESBIntegration with Salesforce using Mule ESB
Integration with Salesforce using Mule ESBSanjeet Pandey
 

What's hot (18)

ASP.Net | Sabin Saleem
ASP.Net | Sabin SaleemASP.Net | Sabin Saleem
ASP.Net | Sabin Saleem
 
An overview of microsoft mvc dot net
An overview of microsoft mvc dot netAn overview of microsoft mvc dot net
An overview of microsoft mvc dot net
 
Anypoint data gateway
Anypoint data gatewayAnypoint data gateway
Anypoint data gateway
 
CloudHub networking guide
CloudHub networking guideCloudHub networking guide
CloudHub networking guide
 
Development Journey of the Shopware Administration
Development Journey of the Shopware AdministrationDevelopment Journey of the Shopware Administration
Development Journey of the Shopware Administration
 
Integration with Microsoft CRM using Mule ESB
Integration with Microsoft CRM using Mule ESBIntegration with Microsoft CRM using Mule ESB
Integration with Microsoft CRM using Mule ESB
 
Vb and asp.net
Vb and asp.netVb and asp.net
Vb and asp.net
 
Mule addcontactsintosalesforce
Mule addcontactsintosalesforceMule addcontactsintosalesforce
Mule addcontactsintosalesforce
 
Mule anypoint b2 b
Mule  anypoint b2 bMule  anypoint b2 b
Mule anypoint b2 b
 
MULE-JAAS
MULE-JAASMULE-JAAS
MULE-JAAS
 
Query Operation in Microsoft SharePoint using Mule ESB
Query Operation in Microsoft SharePoint using Mule ESBQuery Operation in Microsoft SharePoint using Mule ESB
Query Operation in Microsoft SharePoint using Mule ESB
 
Mule esb–api layer
Mule esb–api layerMule esb–api layer
Mule esb–api layer
 
Mule esb stripe
Mule esb stripeMule esb stripe
Mule esb stripe
 
Automatic documentation with mule
Automatic documentation with muleAutomatic documentation with mule
Automatic documentation with mule
 
Silverlight 3.0
Silverlight 3.0Silverlight 3.0
Silverlight 3.0
 
Mule connectors
Mule  connectorsMule  connectors
Mule connectors
 
Mule microsoft environment
Mule  microsoft environmentMule  microsoft environment
Mule microsoft environment
 
Integration with Salesforce using Mule ESB
Integration with Salesforce using Mule ESBIntegration with Salesforce using Mule ESB
Integration with Salesforce using Mule ESB
 

Similar to Asp.net Overview

Top 10 - ASP.NET Interview Questions And Answers 2023.pdf
Top 10 -  ASP.NET Interview Questions And Answers 2023.pdfTop 10 -  ASP.NET Interview Questions And Answers 2023.pdf
Top 10 - ASP.NET Interview Questions And Answers 2023.pdfRuddarpratap
 
ASP.NET Presentation
ASP.NET PresentationASP.NET Presentation
ASP.NET PresentationRasel Khan
 
Benefits of Using ASP.NET For Web Development for Businesses In 2023
Benefits of Using ASP.NET For Web Development for Businesses In 2023Benefits of Using ASP.NET For Web Development for Businesses In 2023
Benefits of Using ASP.NET For Web Development for Businesses In 2023CMARIX TechnoLabs
 
What is ASP.NET and Why do we need it?
What is ASP.NET and Why do we need it?What is ASP.NET and Why do we need it?
What is ASP.NET and Why do we need it?Natural Group
 
Difference between asp.net mvc 3 and asp.net mvc 4
Difference between asp.net mvc 3 and asp.net mvc 4Difference between asp.net mvc 3 and asp.net mvc 4
Difference between asp.net mvc 3 and asp.net mvc 4Umar Ali
 
Online furniture management system
Online furniture management systemOnline furniture management system
Online furniture management systemYesu Raj
 
New microsoft office power point presentation
New microsoft office power point presentationNew microsoft office power point presentation
New microsoft office power point presentationteach4uin
 
Web Development with ASP.NET: Taking Control of the Digital World
Web Development with ASP.NET: Taking Control  of the Digital WorldWeb Development with ASP.NET: Taking Control  of the Digital World
Web Development with ASP.NET: Taking Control of the Digital Worldcompany
 
Asp.net With mvc handson
Asp.net With mvc handsonAsp.net With mvc handson
Asp.net With mvc handsonPrashant Kumar
 
Asp.net architecture
Asp.net architectureAsp.net architecture
Asp.net architectureIblesoft
 
ASP.NET AJAX with Visual Studio 2008
ASP.NET AJAX with Visual Studio 2008ASP.NET AJAX with Visual Studio 2008
ASP.NET AJAX with Visual Studio 2008Caleb Jenkins
 
All the amazing features of asp.net core
All the amazing features of asp.net coreAll the amazing features of asp.net core
All the amazing features of asp.net coreGrayCell Technologies
 
JOB PORTALProject SummaryTitle JOB-PORT.docx
JOB PORTALProject SummaryTitle    JOB-PORT.docxJOB PORTALProject SummaryTitle    JOB-PORT.docx
JOB PORTALProject SummaryTitle JOB-PORT.docxchristiandean12115
 

Similar to Asp.net Overview (20)

Asp.netrole
Asp.netroleAsp.netrole
Asp.netrole
 
Top 10 - ASP.NET Interview Questions And Answers 2023.pdf
Top 10 -  ASP.NET Interview Questions And Answers 2023.pdfTop 10 -  ASP.NET Interview Questions And Answers 2023.pdf
Top 10 - ASP.NET Interview Questions And Answers 2023.pdf
 
ASP.NET Presentation
ASP.NET PresentationASP.NET Presentation
ASP.NET Presentation
 
Beginners introduction to asp.net
Beginners introduction to asp.netBeginners introduction to asp.net
Beginners introduction to asp.net
 
Benefits of Using ASP.NET For Web Development for Businesses In 2023
Benefits of Using ASP.NET For Web Development for Businesses In 2023Benefits of Using ASP.NET For Web Development for Businesses In 2023
Benefits of Using ASP.NET For Web Development for Businesses In 2023
 
What is ASP.NET and Why do we need it?
What is ASP.NET and Why do we need it?What is ASP.NET and Why do we need it?
What is ASP.NET and Why do we need it?
 
Difference between asp.net mvc 3 and asp.net mvc 4
Difference between asp.net mvc 3 and asp.net mvc 4Difference between asp.net mvc 3 and asp.net mvc 4
Difference between asp.net mvc 3 and asp.net mvc 4
 
Online furniture management system
Online furniture management systemOnline furniture management system
Online furniture management system
 
New microsoft office power point presentation
New microsoft office power point presentationNew microsoft office power point presentation
New microsoft office power point presentation
 
Asp-net
 Asp-net Asp-net
Asp-net
 
Introduction to asp
Introduction to aspIntroduction to asp
Introduction to asp
 
Web Development with ASP.NET: Taking Control of the Digital World
Web Development with ASP.NET: Taking Control  of the Digital WorldWeb Development with ASP.NET: Taking Control  of the Digital World
Web Development with ASP.NET: Taking Control of the Digital World
 
Asp.net With mvc handson
Asp.net With mvc handsonAsp.net With mvc handson
Asp.net With mvc handson
 
Asp.net
Asp.netAsp.net
Asp.net
 
Asp.net architecture
Asp.net architectureAsp.net architecture
Asp.net architecture
 
ASP.NET AJAX with Visual Studio 2008
ASP.NET AJAX with Visual Studio 2008ASP.NET AJAX with Visual Studio 2008
ASP.NET AJAX with Visual Studio 2008
 
All the amazing features of asp.net core
All the amazing features of asp.net coreAll the amazing features of asp.net core
All the amazing features of asp.net core
 
JOB PORTALProject SummaryTitle JOB-PORT.docx
JOB PORTALProject SummaryTitle    JOB-PORT.docxJOB PORTALProject SummaryTitle    JOB-PORT.docx
JOB PORTALProject SummaryTitle JOB-PORT.docx
 
Real-Time Web Applications with ASP.NET WebAPI and SignalR
Real-Time Web Applications with ASP.NET WebAPI and SignalRReal-Time Web Applications with ASP.NET WebAPI and SignalR
Real-Time Web Applications with ASP.NET WebAPI and SignalR
 
Walther Aspnet4
Walther Aspnet4Walther Aspnet4
Walther Aspnet4
 

More from priya Nithya

Android Architecture.pptx
Android Architecture.pptxAndroid Architecture.pptx
Android Architecture.pptxpriya Nithya
 
Html server control - ASP. NET with c#
Html server control - ASP. NET with c#Html server control - ASP. NET with c#
Html server control - ASP. NET with c#priya Nithya
 
Modes of transfer - Computer Organization & Architecture - Nithiyapriya Pasav...
Modes of transfer - Computer Organization & Architecture - Nithiyapriya Pasav...Modes of transfer - Computer Organization & Architecture - Nithiyapriya Pasav...
Modes of transfer - Computer Organization & Architecture - Nithiyapriya Pasav...priya Nithya
 
Asynchronous data transfer
Asynchronous data transferAsynchronous data transfer
Asynchronous data transferpriya Nithya
 
Asp.net state management
Asp.net state managementAsp.net state management
Asp.net state managementpriya Nithya
 
HTTP REQUEST RESPONSE OBJECT - WEB APPLICATION USING C# LAB
HTTP REQUEST RESPONSE OBJECT - WEB APPLICATION USING C# LABHTTP REQUEST RESPONSE OBJECT - WEB APPLICATION USING C# LAB
HTTP REQUEST RESPONSE OBJECT - WEB APPLICATION USING C# LABpriya Nithya
 
HTML SERVER CONTROL - ASP.NET WITH C#
HTML SERVER CONTROL  - ASP.NET WITH C#HTML SERVER CONTROL  - ASP.NET WITH C#
HTML SERVER CONTROL - ASP.NET WITH C#priya Nithya
 
Android LAb - Creating an android app with Radio button
Android LAb - Creating an android app with Radio buttonAndroid LAb - Creating an android app with Radio button
Android LAb - Creating an android app with Radio buttonpriya Nithya
 
ASP.NET - Life cycle of asp
ASP.NET - Life cycle of aspASP.NET - Life cycle of asp
ASP.NET - Life cycle of asppriya Nithya
 
Web application using c# Lab - Web Configuration file
Web application using c# Lab - Web Configuration fileWeb application using c# Lab - Web Configuration file
Web application using c# Lab - Web Configuration filepriya Nithya
 
Creation of simple application using - step by step
Creation of simple application using - step by stepCreation of simple application using - step by step
Creation of simple application using - step by steppriya Nithya
 
Adaptation of tcp window
Adaptation of tcp windowAdaptation of tcp window
Adaptation of tcp windowpriya Nithya
 
Key mechanism of mobile ip
Key mechanism of mobile ip Key mechanism of mobile ip
Key mechanism of mobile ip priya Nithya
 
Mobile ip overview
Mobile ip overviewMobile ip overview
Mobile ip overviewpriya Nithya
 
Features of mobile ip
Features of mobile ipFeatures of mobile ip
Features of mobile ippriya Nithya
 
Creating a Name seperator Custom Control using C#
Creating a Name seperator Custom Control using C#Creating a Name seperator Custom Control using C#
Creating a Name seperator Custom Control using C#priya Nithya
 
How to Create Database component -Enterprise Application Using C# Lab
How to Create Database component -Enterprise Application Using C# Lab  How to Create Database component -Enterprise Application Using C# Lab
How to Create Database component -Enterprise Application Using C# Lab priya Nithya
 
Creating simple component
Creating simple componentCreating simple component
Creating simple componentpriya Nithya
 

More from priya Nithya (19)

Android Architecture.pptx
Android Architecture.pptxAndroid Architecture.pptx
Android Architecture.pptx
 
Html server control - ASP. NET with c#
Html server control - ASP. NET with c#Html server control - ASP. NET with c#
Html server control - ASP. NET with c#
 
Modes of transfer - Computer Organization & Architecture - Nithiyapriya Pasav...
Modes of transfer - Computer Organization & Architecture - Nithiyapriya Pasav...Modes of transfer - Computer Organization & Architecture - Nithiyapriya Pasav...
Modes of transfer - Computer Organization & Architecture - Nithiyapriya Pasav...
 
Asynchronous data transfer
Asynchronous data transferAsynchronous data transfer
Asynchronous data transfer
 
Asp.net state management
Asp.net state managementAsp.net state management
Asp.net state management
 
HTTP REQUEST RESPONSE OBJECT - WEB APPLICATION USING C# LAB
HTTP REQUEST RESPONSE OBJECT - WEB APPLICATION USING C# LABHTTP REQUEST RESPONSE OBJECT - WEB APPLICATION USING C# LAB
HTTP REQUEST RESPONSE OBJECT - WEB APPLICATION USING C# LAB
 
HTML SERVER CONTROL - ASP.NET WITH C#
HTML SERVER CONTROL  - ASP.NET WITH C#HTML SERVER CONTROL  - ASP.NET WITH C#
HTML SERVER CONTROL - ASP.NET WITH C#
 
Android LAb - Creating an android app with Radio button
Android LAb - Creating an android app with Radio buttonAndroid LAb - Creating an android app with Radio button
Android LAb - Creating an android app with Radio button
 
ASP.NET - Life cycle of asp
ASP.NET - Life cycle of aspASP.NET - Life cycle of asp
ASP.NET - Life cycle of asp
 
Web application using c# Lab - Web Configuration file
Web application using c# Lab - Web Configuration fileWeb application using c# Lab - Web Configuration file
Web application using c# Lab - Web Configuration file
 
Creation of simple application using - step by step
Creation of simple application using - step by stepCreation of simple application using - step by step
Creation of simple application using - step by step
 
Adaptation of tcp window
Adaptation of tcp windowAdaptation of tcp window
Adaptation of tcp window
 
Key mechanism of mobile ip
Key mechanism of mobile ip Key mechanism of mobile ip
Key mechanism of mobile ip
 
Mobile ip overview
Mobile ip overviewMobile ip overview
Mobile ip overview
 
Features of mobile ip
Features of mobile ipFeatures of mobile ip
Features of mobile ip
 
Creating a Name seperator Custom Control using C#
Creating a Name seperator Custom Control using C#Creating a Name seperator Custom Control using C#
Creating a Name seperator Custom Control using C#
 
How to Create Database component -Enterprise Application Using C# Lab
How to Create Database component -Enterprise Application Using C# Lab  How to Create Database component -Enterprise Application Using C# Lab
How to Create Database component -Enterprise Application Using C# Lab
 
Creating simple component
Creating simple componentCreating simple component
Creating simple component
 
Internet (i mcom)
Internet (i mcom)Internet (i mcom)
Internet (i mcom)
 

Recently uploaded

Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxJiesonDelaCerna
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 

Recently uploaded (20)

Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptx
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 

Asp.net Overview

  • 2. ASP.NET INTRODUCTION  ASP.NET is a web development platform, which provides a programming model, a comprehensive software infrastructure and various services required to build up robust web applications for PC, as well as mobile devices.  ASP.NET is used to produce interactive, data-driven web applications over the internet. It consists of a large number of controls such as text boxes, buttons, and labels for assembling, configuring, and manipulating code to create HTML pages. ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
  • 3.  ASP.NET works on top of the HTTP protocol, and uses the HTTP commands and policies to set a browser-to- server bilateral communication and cooperation.  ASP.NET is a part of Microsoft .NET platform. ASP.NET applications are compiled codes, written using the extensible and reusable components or objects present in .NET framework. These codes can use the entire hierarchy of classes in .NET framework. ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
  • 4.  The ASP.NET application codes can be written in any of the following languages: C# Visual Basic.Net Jscript J# ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
  • 5. Features of ASP.NET  Microsoft's ASP.NET, one of the most successful web application development frameworks ever, is fast becoming mature – the newest version of it is ASP.NET 4.5.  You can use ASP.NET to fast develop and deploy highly scalable, high-performance web applications in a managed environment.  ASP.NET 4.5 ships as part of part of Visual Studio 2012 and contains many new and extended features. ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
  • 6.  Some of the ASP.NET 4.5 features are,  Building and Minification feature  Strongly typed Data controls  Model Binding – Isolating the web form from the model  Value providers  Support for OpenID on OAuth Logins  Support for improved paging in ASP.NET4.5 Grid view Control  Enhanced support for asynchronous programming  Support for web sockets  Support for HTML5 form types  ASP.NET Web API ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
  • 7. 1 .Bundling and Minification Feature  The newly introduced bundling and minification feature helps to bundle and minimize the size of the scripts and style sheets in your application.  This feature has a great impact on the performance of your web application as a whole. You now have a System.Web.Optimization namespace that provides support for bundling and Minification of files.  Once you create a new project in ASP.NET 4.5, you'll notice these lines in your Global.asax file: protected void Application_Start() { //Some code BundleTable.Bundles.RegisterTemplateBundles(); } ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
  • 8. 2 . Strongly Typed Data Controls  ASP.NET 4.5, have data controls that can be strongly typed, That will get intellisense where user just need to assign the ItemType property to a model that is going to be associated with the data controls used in “.aspx” pages.  Here is a snippet of code that illustrates how you can use this: <asp:TemplateField HeaderText="Name" > <ItemTemplate> <%# Item.Name.ToString() %> </ItemTemplate> </asp:TemplateField> ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
  • 9. 3 . Model Binding - Isolating the Web Form from the Model  The Model binding feature in ASP.NET 4.5 enables users to develop Web forms, that are independent of the Model that populates the view.  The biggest advantage of using Model Binding in ASP.NET is that the user can easily unit test the methods.  In ASP.NET 4.5 support for model binding is provided through the usage of the ‘System.Web.ModelBinding’ namespace.  This namespace contains value provider classes like ControlAttribute, QueryStringAttribute, etc.  All these classes are inherited from the ValueProviderSourceAttribute class. ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
  • 10. 4 . Value Providers  ASP.NET4.5 provides many Value Providers that can be used to filter data. Query string Session Cookie Control Value  User can also have their own custom value providers. ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
  • 11. 5 .Support for OpenID in OAuth Logins  ASP.NET 4.5 provides support for OpenID for OAuth logins .  User can easily use external services to login to their application. ASP.NET 4.5 enables us to register OAuth provider in the App_Start/AuthConfig.cs file. We can also use this data dictionary to pass additional data. ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
  • 12. 6. Support for improved paging in ASP.NET 4.5 GridView control  Paging support in ASP.NET 4.5 GridView control has been improved a lot. “GridView.AllowCustomPaging” property provides great support for paging and sorting through large amounts of data efficiently. ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
  • 13. 7. Enhanced support for asynchronous programming  ASP.NET 4.5 provides excellent support in asynchronous programming .  User can now read and write HTTP requests and responses without the need of OS threads.  Also, you have support for two new keywords - await and async. ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
  • 14. 8.Support for web sockets  HTML5 WebSockets allow us to perform duplex communication between the client browser and the web server.  ASP.NET 4.5 and IIS 8 provide support for WebSockets protocol where user can now leverage WebSockets in their ASP.NET web applications.  Support for web sockets is provided through the “System.Net.WebSockets” namespace. ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
  • 15. 9.Support for HTML5 form types  ASP.NET 4.5 provides excellent support for HTML5 form types.  The following are the list of new controls available in HTML5: email url number range Date pickers( i.e., date, month, week, time, datetime, datetime-local) search color ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ
  • 16. 10. ASP.NET Web API  Web API is included in ASP.NET MVC 4 and ASP.NET Web Forms, which helps us to build and consume HTTP services easily.  Microsoft's ASP.NET is a language and platform-neutral and interoperable technology.  It is one of the most successful web technologies till date.  It has matured over the years with the latest version, ASP.NET 4.5, having a number of new features and enhancements. ASP.NET OVERVIEW - NITHIYAPRIYA PASAVARAJ