SlideShare a Scribd company logo
Jeff Blankenburg Developer Evangelist Microsoft Corporation http://www.jeffblankenburg.com [email_address]
Increased productivity Fewer concepts, fewer lines of code Easier to author, debug, and maintain Well integrated with design and development tools Seamlessly integrated application model Works with ASP.NET pages and server controls Works everywhere – cross-browser, standards based A framework for building richer, more interactive,  more personalized web experiences.
Server Framework Client Framework and Services Client Application Services Browser Integration ASP.NET AJAX ASP.NET Pages Web Services HTML, Script, ASP.NET AJAX   Markup Service Proxies ASP.NET AJAX Server Extensions ASP.NET AJAX Server Controls App Services Bridge Web Services Bridge Client Script Library Controls, Components Script Core Base Class Library Component Model and UI Framework Browser Compatibility ASP.NET 2.0 Application Services Page Framework, Server Controls
Server-centric Ajax Web Development Incremental approach to enrich UI Doesn’t require lots of JavaScript Keep core logic on server (VB/C#) Client-centric Ajax Web Development Leverage full power of script/DHTML Provide richer and more interactive user experience Build mash-ups, gadgets and other new immersive experiences
<asp:UpdatePanel> control Easily define “updatable” regions of a page Server roundtrips become asynchronous  ASP.NET AJAX handles all the infrastructure Supports Triggers that allow other controls to fire the Postback <asp:UpdatePanel id=“updatepanel1” runat=“server”> <ContentTemplate> <!-- This content will be dynamically updated! --> <asp:Calendar id=“calndr1” runat=“server”/> <ContentTemplate> </asp:UpdatePanel>
Control Extenders Extend ASP.NET controls with ASP.NET AJAX client behaviors Encapsulate both client and server behavior Same familiar programming model as ASP.NET server controls <asp:TextBox runat=&quot;server&quot; ID=&quot;TextBox1&quot; /> <asp:AutoCompleteExtender runat=&quot;server&quot; ID=&quot;AC1” TargetControlID=&quot;TextBox1&quot;  ServicePath=&quot;AutoComplete.asmx“ ServiceMethod=&quot;GetWords” />
UpdateProgress control provides feedback on the progress of partial-page rendering <asp:UpdateProgress ID=&quot;UpdateProgress1“ runat=&quot;server&quot;> <ProgressTemplate> Please Wait ... </ProgressTemplate> </asp:UpdateProgress>
ASP.NET AJAX script core – a full type system for JavaScript Classes, interfaces, inheritance Enumerations Multi-cast event handlers similar to .NET Base class library StringBuilder, extensions to existing types  Serializers Debugging and tracing classes Networking
ScriptManager handles web service access <asp:ScriptManager runat=&quot;server&quot; ID=&quot;scriptManager&quot;> <Services> <asp:ServiceReference path=&quot;~/WebServices/SimpleWebService.asmx&quot; /> </Services> </asp:ScriptManager> Server ASMX Requirements Reference to  Microsoft.Web.Script.Services [ScriptService] Attribute on Class Inline Methods on ASPX can be called as Web Services Add [WebMethod] Attribute to Method
Shared-source, community project Sample controls and extenders SDK to simplify creating your own Full source code & documentation ~30 controls and components
© 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation.  Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation.  MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.
Ad

Recommended

Ajax control asp.net
Ajax control asp.net
Sireesh K
 
Ajax and ASP.NET AJAX
Ajax and ASP.NET AJAX
Julie Iskander
 
ASP.NET AJAX Basics
ASP.NET AJAX Basics
petrov
 
Ajax & ASP.NET 2
Ajax & ASP.NET 2
Talal Alsubaie
 
Ajax control tool kit
Ajax control tool kit
Vidhi Patel
 
ASP.NET AJAX with Visual Studio 2008
ASP.NET AJAX with Visual Studio 2008
Caleb Jenkins
 
Asp.Net Ajax Component Development
Asp.Net Ajax Component Development
Chui-Wen Chiu
 
Introduction to asp
Introduction to asp
Madhuri Kavade
 
Ajax
Ajax
Anaghabalakrishnan
 
ASP.NET 03 - Working With Web Server Controls
ASP.NET 03 - Working With Web Server Controls
Randy Connolly
 
Ajax
Ajax
Gayathri Ganesh
 
Active server pages
Active server pages
mcatahir947
 
Web forms in ASP.net
Web forms in ASP.net
Madhuri Kavade
 
Web controls
Web controls
Sarthak Varshney
 
Active Server Page(ASP)
Active Server Page(ASP)
Keshab Nath
 
Asp.net server controls
Asp.net server controls
Raed Aldahdooh
 
Asp
Asp
Kundan Kumar Pandey
 
Introduction to ajax
Introduction to ajax
Nir Elbaz
 
2310 b 06
2310 b 06
Krazy Koder
 
Learn ASP
Learn ASP
gurchet
 
Controls in asp.net
Controls in asp.net
baabtra.com - No. 1 supplier of quality freshers
 
ASP.NET Session 9
ASP.NET Session 9
Sisir Ghosh
 
Ajax
Ajax
Nishanthyadav Nishanth
 
AJAX in ASP.NET
AJAX in ASP.NET
James Crowley
 
Ajax
Ajax
Mahesh Shitole
 
Introduction ASP
Introduction ASP
FaTin GhaZmi
 
ASP.NET Lecture 1
ASP.NET Lecture 1
Julie Iskander
 
ASP
ASP
Ramasubbu .P
 
How to make more impact as an engineer
How to make more impact as an engineer
Peter Gfader
 
State management
State management
Iblesoft
 

More Related Content

What's hot (20)

Ajax
Ajax
Anaghabalakrishnan
 
ASP.NET 03 - Working With Web Server Controls
ASP.NET 03 - Working With Web Server Controls
Randy Connolly
 
Ajax
Ajax
Gayathri Ganesh
 
Active server pages
Active server pages
mcatahir947
 
Web forms in ASP.net
Web forms in ASP.net
Madhuri Kavade
 
Web controls
Web controls
Sarthak Varshney
 
Active Server Page(ASP)
Active Server Page(ASP)
Keshab Nath
 
Asp.net server controls
Asp.net server controls
Raed Aldahdooh
 
Asp
Asp
Kundan Kumar Pandey
 
Introduction to ajax
Introduction to ajax
Nir Elbaz
 
2310 b 06
2310 b 06
Krazy Koder
 
Learn ASP
Learn ASP
gurchet
 
Controls in asp.net
Controls in asp.net
baabtra.com - No. 1 supplier of quality freshers
 
ASP.NET Session 9
ASP.NET Session 9
Sisir Ghosh
 
Ajax
Ajax
Nishanthyadav Nishanth
 
AJAX in ASP.NET
AJAX in ASP.NET
James Crowley
 
Ajax
Ajax
Mahesh Shitole
 
Introduction ASP
Introduction ASP
FaTin GhaZmi
 
ASP.NET Lecture 1
ASP.NET Lecture 1
Julie Iskander
 
ASP
ASP
Ramasubbu .P
 

Viewers also liked (20)

How to make more impact as an engineer
How to make more impact as an engineer
Peter Gfader
 
State management
State management
Iblesoft
 
Edi ppt
Edi ppt
Sheetal Verma
 
Electronic data interchange
Electronic data interchange
Abhishek Nayak
 
Validation controls ppt
Validation controls ppt
Iblesoft
 
Standard control in asp.net
Standard control in asp.net
baabtra.com - No. 1 supplier of quality freshers
 
Asp.Net Control Architecture
Asp.Net Control Architecture
Sundararajan Subramanian
 
Intro To Asp Net And Web Forms
Intro To Asp Net And Web Forms
SAMIR BHOGAYTA
 
Introduction to ASP.NET
Introduction to ASP.NET
Peter Gfader
 
Presentation on asp.net controls
Presentation on asp.net controls
Reshi Unen
 
State management in ASP.NET
State management in ASP.NET
Om Vikram Thapa
 
ASP.NET State management
ASP.NET State management
Shivanand Arur
 
Validation controls in asp
Validation controls in asp
Shishir Jain
 
Seminar ppt on digital signature
Seminar ppt on digital signature
jolly9293
 
Electronic data interchange
Electronic data interchange
Rohit Kumar
 
Ch3 server controls
Ch3 server controls
Madhuri Kavade
 
State Management in ASP.NET
State Management in ASP.NET
Shyam Sir
 
Asp.net.
Asp.net.
Naveen Sihag
 
Presentation - Electronic Data Interchange
Presentation - Electronic Data Interchange
Sharad Srivastava
 
Controls in asp.net
Controls in asp.net
baabtra.com - No. 1 supplier of quality freshers
 
Ad

Similar to Introduction To Asp.Net Ajax (20)

AJAX ASP.Net
AJAX ASP.Net
SHC
 
Developing a Better User Experience with "Atlas"
Developing a Better User Experience with "Atlas"
goodfriday
 
2 Asp Dot Net Ajax Extensions
2 Asp Dot Net Ajax Extensions
Abhishek Bhatnagar
 
Walther Aspnet4
Walther Aspnet4
rsnarayanan
 
New microsoft office power point presentation
New microsoft office power point presentation
teach4uin
 
How to develop asp web applications
How to develop asp web applications
Deepankar Pathak
 
Atlas Php
Atlas Php
Gregory Renard
 
Developing an ASP.NET Web Application
Developing an ASP.NET Web Application
Rishi Kothari
 
ASP.NET 4.0 Roadmap
ASP.NET 4.0 Roadmap
Harish Ranganathan
 
DevNext - Web Programming Concepts Using Asp Net
DevNext - Web Programming Concepts Using Asp Net
Adil Mughal
 
Asp.net architecture
Asp.net architecture
Iblesoft
 
Walther Ajax4
Walther Ajax4
rsnarayanan
 
Introductionto asp net-ppt
Introductionto asp net-ppt
tmasyam
 
Integrating ASP.NET AJAX with SharePoint
Integrating ASP.NET AJAX with SharePoint
Rob Windsor
 
DYNAMIC CONTENT TECHNOLOGIES ASP(ACTIVE SERVER PAGES)
DYNAMIC CONTENT TECHNOLOGIES ASP(ACTIVE SERVER PAGES)
Prof Ansari
 
CIS 451: Introduction to ASP.NET
CIS 451: Introduction to ASP.NET
webhostingguy
 
2310 b 04
2310 b 04
Krazy Koder
 
Controls
Controls
Iblesoft
 
Overview of ASP.Net by software outsourcing company india
Overview of ASP.Net by software outsourcing company india
Jignesh Aakoliya
 
Introduction to Alfresco Surf Platform
Introduction to Alfresco Surf Platform
Alfresco Software
 
AJAX ASP.Net
AJAX ASP.Net
SHC
 
Developing a Better User Experience with "Atlas"
Developing a Better User Experience with "Atlas"
goodfriday
 
New microsoft office power point presentation
New microsoft office power point presentation
teach4uin
 
How to develop asp web applications
How to develop asp web applications
Deepankar Pathak
 
Developing an ASP.NET Web Application
Developing an ASP.NET Web Application
Rishi Kothari
 
DevNext - Web Programming Concepts Using Asp Net
DevNext - Web Programming Concepts Using Asp Net
Adil Mughal
 
Asp.net architecture
Asp.net architecture
Iblesoft
 
Introductionto asp net-ppt
Introductionto asp net-ppt
tmasyam
 
Integrating ASP.NET AJAX with SharePoint
Integrating ASP.NET AJAX with SharePoint
Rob Windsor
 
DYNAMIC CONTENT TECHNOLOGIES ASP(ACTIVE SERVER PAGES)
DYNAMIC CONTENT TECHNOLOGIES ASP(ACTIVE SERVER PAGES)
Prof Ansari
 
CIS 451: Introduction to ASP.NET
CIS 451: Introduction to ASP.NET
webhostingguy
 
Overview of ASP.Net by software outsourcing company india
Overview of ASP.Net by software outsourcing company india
Jignesh Aakoliya
 
Introduction to Alfresco Surf Platform
Introduction to Alfresco Surf Platform
Alfresco Software
 
Ad

More from Jeff Blankenburg (9)

Mix09 Overview
Mix09 Overview
Jeff Blankenburg
 
Silverlight An Introduction
Silverlight An Introduction
Jeff Blankenburg
 
Amazing Things You Need To See
Amazing Things You Need To See
Jeff Blankenburg
 
Reach End Users With Next Generation Web Applications
Reach End Users With Next Generation Web Applications
Jeff Blankenburg
 
Why I Write Software
Why I Write Software
Jeff Blankenburg
 
Introduction To Silverlight
Introduction To Silverlight
Jeff Blankenburg
 
Migrating To Visual Studio 2008 & .Net Framework 3.5
Migrating To Visual Studio 2008 & .Net Framework 3.5
Jeff Blankenburg
 
Advanced Silverlight
Advanced Silverlight
Jeff Blankenburg
 
Cool Microsoft Stuff
Cool Microsoft Stuff
Jeff Blankenburg
 
Silverlight An Introduction
Silverlight An Introduction
Jeff Blankenburg
 
Amazing Things You Need To See
Amazing Things You Need To See
Jeff Blankenburg
 
Reach End Users With Next Generation Web Applications
Reach End Users With Next Generation Web Applications
Jeff Blankenburg
 
Introduction To Silverlight
Introduction To Silverlight
Jeff Blankenburg
 
Migrating To Visual Studio 2008 & .Net Framework 3.5
Migrating To Visual Studio 2008 & .Net Framework 3.5
Jeff Blankenburg
 

Recently uploaded (20)

Architecture that Advances Part I Review.pdf
Architecture that Advances Part I Review.pdf
Brij Consulting, LLC
 
Redefining Business Experiences: The Role of a Corporate Event Management Com...
Redefining Business Experiences: The Role of a Corporate Event Management Com...
Be Executive Events
 
Ian McAllister - Respected Photographer And Writer
Ian McAllister - Respected Photographer And Writer
Ian McAllister
 
5 Most Powerful Reasons to Hire a Management Consultant – Boost Efficiency & ...
5 Most Powerful Reasons to Hire a Management Consultant – Boost Efficiency & ...
RUPAL AGARWAL
 
smidmart industrial Automation Ones Stop Solution
smidmart industrial Automation Ones Stop Solution
smidmart
 
Building a Customer-Centric Business Best Practices.pdf
Building a Customer-Centric Business Best Practices.pdf
Stacy Neir
 
A Certificate Programme on ISO56000 Series_Ver 4_Level 1.pdf
A Certificate Programme on ISO56000 Series_Ver 4_Level 1.pdf
Innomantra
 
“Built with our sleeves rolled up”Action
“Built with our sleeves rolled up”Action
Action EDI
 
Visualizing SOPs with Flow Charts: A Step-by-Step Guide to Streamlining Stand...
Visualizing SOPs with Flow Charts: A Step-by-Step Guide to Streamlining Stand...
RUPAL AGARWAL
 
zlib.pub_fundamental-analysis-for-investors-4th-edition.pdf
zlib.pub_fundamental-analysis-for-investors-4th-edition.pdf
ssuserc74044
 
Ch02.ppt bisnis internasional bisnis internasional
Ch02.ppt bisnis internasional bisnis internasional
devina81
 
Product & GTM Lead — Healthy Food Diversification, Marico
Product & GTM Lead — Healthy Food Diversification, Marico
AyushMishra72901
 
ASEAN ISO Tank Container Market Size, Growth and Forecast | 2034
ASEAN ISO Tank Container Market Size, Growth and Forecast | 2034
GeorgeButtler
 
Chapter 7.ppt for marketing planning and research
Chapter 7.ppt for marketing planning and research
selvavishnuchelliah2
 
PT IBX Daya Nusantara Company Profile 2025
PT IBX Daya Nusantara Company Profile 2025
IBX Daya Nusantara
 
chapter 9 leadership qualityies university of windsor
chapter 9 leadership qualityies university of windsor
zamananalyst29
 
Breaking Through Cultural Friction: The Role of Respect for People (Strengthe...
Breaking Through Cultural Friction: The Role of Respect for People (Strengthe...
KaiNexus
 
Sathesh Murthy_ Mastering the Art of Communication for Business Success.pdf
Sathesh Murthy_ Mastering the Art of Communication for Business Success.pdf
Enterprise world
 
Vacuum Truck Industry Insights & Outlook
Vacuum Truck Industry Insights & Outlook
chanderdeepseoexpert
 
Stuart Frost - The Chief Executive Officer Of Geminos
Stuart Frost - The Chief Executive Officer Of Geminos
Stuart Frost
 
Architecture that Advances Part I Review.pdf
Architecture that Advances Part I Review.pdf
Brij Consulting, LLC
 
Redefining Business Experiences: The Role of a Corporate Event Management Com...
Redefining Business Experiences: The Role of a Corporate Event Management Com...
Be Executive Events
 
Ian McAllister - Respected Photographer And Writer
Ian McAllister - Respected Photographer And Writer
Ian McAllister
 
5 Most Powerful Reasons to Hire a Management Consultant – Boost Efficiency & ...
5 Most Powerful Reasons to Hire a Management Consultant – Boost Efficiency & ...
RUPAL AGARWAL
 
smidmart industrial Automation Ones Stop Solution
smidmart industrial Automation Ones Stop Solution
smidmart
 
Building a Customer-Centric Business Best Practices.pdf
Building a Customer-Centric Business Best Practices.pdf
Stacy Neir
 
A Certificate Programme on ISO56000 Series_Ver 4_Level 1.pdf
A Certificate Programme on ISO56000 Series_Ver 4_Level 1.pdf
Innomantra
 
“Built with our sleeves rolled up”Action
“Built with our sleeves rolled up”Action
Action EDI
 
Visualizing SOPs with Flow Charts: A Step-by-Step Guide to Streamlining Stand...
Visualizing SOPs with Flow Charts: A Step-by-Step Guide to Streamlining Stand...
RUPAL AGARWAL
 
zlib.pub_fundamental-analysis-for-investors-4th-edition.pdf
zlib.pub_fundamental-analysis-for-investors-4th-edition.pdf
ssuserc74044
 
Ch02.ppt bisnis internasional bisnis internasional
Ch02.ppt bisnis internasional bisnis internasional
devina81
 
Product & GTM Lead — Healthy Food Diversification, Marico
Product & GTM Lead — Healthy Food Diversification, Marico
AyushMishra72901
 
ASEAN ISO Tank Container Market Size, Growth and Forecast | 2034
ASEAN ISO Tank Container Market Size, Growth and Forecast | 2034
GeorgeButtler
 
Chapter 7.ppt for marketing planning and research
Chapter 7.ppt for marketing planning and research
selvavishnuchelliah2
 
PT IBX Daya Nusantara Company Profile 2025
PT IBX Daya Nusantara Company Profile 2025
IBX Daya Nusantara
 
chapter 9 leadership qualityies university of windsor
chapter 9 leadership qualityies university of windsor
zamananalyst29
 
Breaking Through Cultural Friction: The Role of Respect for People (Strengthe...
Breaking Through Cultural Friction: The Role of Respect for People (Strengthe...
KaiNexus
 
Sathesh Murthy_ Mastering the Art of Communication for Business Success.pdf
Sathesh Murthy_ Mastering the Art of Communication for Business Success.pdf
Enterprise world
 
Vacuum Truck Industry Insights & Outlook
Vacuum Truck Industry Insights & Outlook
chanderdeepseoexpert
 
Stuart Frost - The Chief Executive Officer Of Geminos
Stuart Frost - The Chief Executive Officer Of Geminos
Stuart Frost
 

Introduction To Asp.Net Ajax

  • 1. Jeff Blankenburg Developer Evangelist Microsoft Corporation http://www.jeffblankenburg.com [email_address]
  • 2. Increased productivity Fewer concepts, fewer lines of code Easier to author, debug, and maintain Well integrated with design and development tools Seamlessly integrated application model Works with ASP.NET pages and server controls Works everywhere – cross-browser, standards based A framework for building richer, more interactive, more personalized web experiences.
  • 3. Server Framework Client Framework and Services Client Application Services Browser Integration ASP.NET AJAX ASP.NET Pages Web Services HTML, Script, ASP.NET AJAX Markup Service Proxies ASP.NET AJAX Server Extensions ASP.NET AJAX Server Controls App Services Bridge Web Services Bridge Client Script Library Controls, Components Script Core Base Class Library Component Model and UI Framework Browser Compatibility ASP.NET 2.0 Application Services Page Framework, Server Controls
  • 4. Server-centric Ajax Web Development Incremental approach to enrich UI Doesn’t require lots of JavaScript Keep core logic on server (VB/C#) Client-centric Ajax Web Development Leverage full power of script/DHTML Provide richer and more interactive user experience Build mash-ups, gadgets and other new immersive experiences
  • 5. <asp:UpdatePanel> control Easily define “updatable” regions of a page Server roundtrips become asynchronous ASP.NET AJAX handles all the infrastructure Supports Triggers that allow other controls to fire the Postback <asp:UpdatePanel id=“updatepanel1” runat=“server”> <ContentTemplate> <!-- This content will be dynamically updated! --> <asp:Calendar id=“calndr1” runat=“server”/> <ContentTemplate> </asp:UpdatePanel>
  • 6. Control Extenders Extend ASP.NET controls with ASP.NET AJAX client behaviors Encapsulate both client and server behavior Same familiar programming model as ASP.NET server controls <asp:TextBox runat=&quot;server&quot; ID=&quot;TextBox1&quot; /> <asp:AutoCompleteExtender runat=&quot;server&quot; ID=&quot;AC1” TargetControlID=&quot;TextBox1&quot; ServicePath=&quot;AutoComplete.asmx“ ServiceMethod=&quot;GetWords” />
  • 7. UpdateProgress control provides feedback on the progress of partial-page rendering <asp:UpdateProgress ID=&quot;UpdateProgress1“ runat=&quot;server&quot;> <ProgressTemplate> Please Wait ... </ProgressTemplate> </asp:UpdateProgress>
  • 8. ASP.NET AJAX script core – a full type system for JavaScript Classes, interfaces, inheritance Enumerations Multi-cast event handlers similar to .NET Base class library StringBuilder, extensions to existing types Serializers Debugging and tracing classes Networking
  • 9. ScriptManager handles web service access <asp:ScriptManager runat=&quot;server&quot; ID=&quot;scriptManager&quot;> <Services> <asp:ServiceReference path=&quot;~/WebServices/SimpleWebService.asmx&quot; /> </Services> </asp:ScriptManager> Server ASMX Requirements Reference to Microsoft.Web.Script.Services [ScriptService] Attribute on Class Inline Methods on ASPX can be called as Web Services Add [WebMethod] Attribute to Method
  • 10. Shared-source, community project Sample controls and extenders SDK to simplify creating your own Full source code & documentation ~30 controls and components
  • 11. © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Editor's Notes

  • #2: 05/29/09 22:52 © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.