microsoft asp.net: taking ajax to the next level

44
ASP.NET: Taking Ajax to the Next Level Stephen Walther Senior Program Manager Microsoft Corporation

Upload: goodfriday

Post on 10-Jun-2015

1.459 views

Category:

Technology


1 download

DESCRIPTION

Hear how ASP.NET AJAX 4.0 makes building pure client-side AJAX Web applications even easier, and watch us build an entire data-driven ASP.NET AJAX application from start to finish by taking advantage of only JavaScript, HTML pages, and Windows Communication Foundation (WCF) services. Also learn about new ASP.NET AJAX features including the DataView control, declarative templates, live client-side data binding, WCF, and REST integration.

TRANSCRIPT

Page 1: Microsoft ASP.NET: Taking AJAX to the Next Level

ASP.NET: Taking Ajax to the Next Level

Stephen WaltherSenior Program ManagerMicrosoft Corporation

Page 2: Microsoft ASP.NET: Taking AJAX to the Next Level

Introduction

Web Application Experience in 1993

Page 3: Microsoft ASP.NET: Taking AJAX to the Next Level

Introduction

Brendan Eich’s Home Page (the inventor of JavaScript)

Page 4: Microsoft ASP.NET: Taking AJAX to the Next Level

Introduction

Super Fancy Ajax Application

Page 5: Microsoft ASP.NET: Taking AJAX to the Next Level

ASP.NET Server-SidePages are rendered on the server and updated through postbacks

ASP.NET Server-Side AJAX (AJAH)Pages are rendered on the server and updated through AJAX requests for HTML

ASP.NET Client-Side AJAXPages are rendered on the client and updated through Ajax requests for JSON

Different Types of Web Applications

Page 6: Microsoft ASP.NET: Taking AJAX to the Next Level

Client-Side Application Model

renders once

Ajax Calls (services)

Page 7: Microsoft ASP.NET: Taking AJAX to the Next Level

Less roundtripsLess bandwidthLess work on the web serverMore responsive

Why AJAX Applications Are Good

Page 8: Microsoft ASP.NET: Taking AJAX to the Next Level

Two developers: an ASP.NET and JavaScript developer. Ask each developer when a button click event happens…

Why AJAX Applications are Good

Page 9: Microsoft ASP.NET: Taking AJAX to the Next Level

Overview: 3 Ways to Build an Application

1. Server-Side ASP.NET

2. Server-Side ASP.NET AJAX

3. Client-Side ASP.NET AJAX

Page 10: Microsoft ASP.NET: Taking AJAX to the Next Level

Overview: Features of Client-Side ASP.NET AJAX

1. Declarative Client-Side Controls

2. Command Bubbling

3. Live Bindings

4. Saving and Updating Data

Page 11: Microsoft ASP.NET: Taking AJAX to the Next Level

Server-Side ASP.NET with No Ajax

• Controls• Code• Work

Web Server Web Browser

renders

postback

Page 12: Microsoft ASP.NET: Taking AJAX to the Next Level

Creating a Master/Detail Page with Server-Side ASP.NET

demo

Page 13: Microsoft ASP.NET: Taking AJAX to the Next Level

BenefitsSafe: No Browser Compatibility IssuesPowerful: Use any programming language

DrawbacksResponsiveness: User must wait for a postbackPerformance: All page content must be rendered for each interaction

Server-Side ASP.NET

Page 14: Microsoft ASP.NET: Taking AJAX to the Next Level

Server-Side ASP.NET AJAXwith UpdatePanel

• Controls• Code• Work

Web Server Web Browser

renders

sneakypostback

Page 15: Microsoft ASP.NET: Taking AJAX to the Next Level

Creating a Master/Detail Page with Server-Side ASP.NET AJAX

demo

Page 16: Microsoft ASP.NET: Taking AJAX to the Next Level

Server-Side ASP.NET AJAX

BenefitsSafe: No Browser Compatibility IssuesPowerful: Use any programming languageCompatible: Retrofit existing ASP.NET applications

DrawbacksResponsiveness: User must wait for a postback (no simultaneous Ajax)Performance: (most) page content must be rendered for each interaction

Page 17: Microsoft ASP.NET: Taking AJAX to the Next Level

Client-Side ASP.NET AJAX Controls

Web Server Web Browser

renders

sneakypostback

• Code• Work • Controls

Page 18: Microsoft ASP.NET: Taking AJAX to the Next Level

Creating a Master/Detail Page with Client-Side AJAX Controls

demo

Page 19: Microsoft ASP.NET: Taking AJAX to the Next Level

Client-Side ASP.NET AJAX Controls

Perfection Reached!Benefits

Responsive: Events happen when they happenPerformance: Only necessary content is passed between client and serverClean separation of content and behavior

Page 20: Microsoft ASP.NET: Taking AJAX to the Next Level

Data Sources

ASP.NET AJAX is compatible with anything that exposes JSON:

ASMX Web ServicesWCF Web ServicesHTTP HandlersJavaScript arraysASP.NET MVC JSonResultADO.NET Data Services REST Services.NET RIA Services

Page 21: Microsoft ASP.NET: Taking AJAX to the Next Level

Why Templates are Good

for (var i=0;i < data.length;i++){ row = "<tr>"; row += "<td>" + data[i].Title + "</td>"; row += "<td>" + data[i].Director +

"</td>"; table += row;}

$get("movieBody").innerHTML = table;

(Evil)

Page 22: Microsoft ASP.NET: Taking AJAX to the Next Level

Why Templates are Good

movieView.set_data(data);

<tbody id="movieBody" class="sys-template"><tr> <td>{{ Title }}</td> <td>{{ Director }}</td>

<td>{{ DateReleased.localeFormat("D") }}</td>

</tr></tbody>

(Good)

Page 23: Microsoft ASP.NET: Taking AJAX to the Next Level

Rude Objections(impediments to a perfect future)

Browser Back/Forward buttonAccessibilitySearch Engine Optimization (SEO)JavaScript disabled (Mobile Devices)

Page 24: Microsoft ASP.NET: Taking AJAX to the Next Level

Creating a Master/Detail Page that supports JavaScript failover

demo

Page 25: Microsoft ASP.NET: Taking AJAX to the Next Level

Technology Independent

Client-Side ASP.NET AJAX…

Works with any modern browser including IE, Firefox, Chrome, Safari, and Opera.

Works with any back-end technology that exposes JSON (not dependent on ASP.NET)

Works with HTML pages, no need for ASP.NET.

Page 26: Microsoft ASP.NET: Taking AJAX to the Next Level

Creating a Master/Detail Page with Pure HTML

demo

Page 27: Microsoft ASP.NET: Taking AJAX to the Next Level

Additional ASP.NET AJAX 4.0 Features

Declarative Client-Side ControlsCommand BubblingLive BindingsSaving and Updating Data

Page 28: Microsoft ASP.NET: Taking AJAX to the Next Level

Declarative Controls

XML Namespacesxmlns:sys=“javascript:Sys”xmlns:dataview=“javascript:Sys.UI.DataView”

sys:activateActivates declarative controls

sys:attachAttaches a control to a DOM element

Page 29: Microsoft ASP.NET: Taking AJAX to the Next Level

Creating a Master/Detail Page with Declarative Client-Side Controls

demo

Page 30: Microsoft ASP.NET: Taking AJAX to the Next Level

Command Bubbling

sys:commandA command name such as select, edit, and so on

sys:commandargumentA command argument such as 78

Sys:commandtargetA control or name of a control that is the target of the command.

onCommandDataView event handler that you can use to handle a custom command

Page 31: Microsoft ASP.NET: Taking AJAX to the Next Level

Select Command

DataView PropertiesselectedIndex initialSelectedIndexselectedDataselectedItemClass

Page 32: Microsoft ASP.NET: Taking AJAX to the Next Level

Creating a Master/Detail Page with Command Bubbling

demo

Page 33: Microsoft ASP.NET: Taking AJAX to the Next Level

Live Bindings

{{ Title }} Used to execute JavaScript in the context of the current data item

{binding Title }WPF style binding syntaxSupports live binding

Page 34: Microsoft ASP.NET: Taking AJAX to the Next Level

Live Bindings

One-way, One-time - The data value is updated only the first time that data binding is invoked. {{ CompanyName }}

One-way, Live - If the underlying data item is modified, the rendered data value is updated automatically.<span>{binding CompanyName}</span>

Two-way, Live - If the user changes the data value, the value of the underlying data item is updated. In addition, if the data item is modified from another source, the rendered data value is updated.<input type=“text” value=“{binding CompanyName}” />

Page 35: Microsoft ASP.NET: Taking AJAX to the Next Level

Creating a Master/Detail Page with Live Bindings

demo

Page 36: Microsoft ASP.NET: Taking AJAX to the Next Level

Data Sources

ASP.NET AJAX is compatible with anything that exposes JSON:

ASMX Web ServicesWCF Web ServicesHTTP HandlersJavaScript arraysASP.NET MVC JSonResultADO.NET Data Services REST Services.NET RIA Services

Page 37: Microsoft ASP.NET: Taking AJAX to the Next Level

DataContext Class

Provides read/write access to dataSupports change tracking in the browserSend multiple changes in a single batch to the serverUse AdoNetDataContext class with ADO.NET Data Services

Page 38: Microsoft ASP.NET: Taking AJAX to the Next Level

Creating a Master/Detail Page that saves data

demo

Page 39: Microsoft ASP.NET: Taking AJAX to the Next Level

Using ADO.NET Data Services

demo

Page 40: Microsoft ASP.NET: Taking AJAX to the Next Level

Image Organizer

Page 41: Microsoft ASP.NET: Taking AJAX to the Next Level

Conclusion

Embrace the client-side! For better performance and a better user experience, start writing client-side ASP.NET AJAX applications.

Page 42: Microsoft ASP.NET: Taking AJAX to the Next Level

CodePlex ASP.NET Previewsaspnet.CodePlex.com

Official ASP.NET Websitewww.ASP.net/ajax

Resources

Page 43: Microsoft ASP.NET: Taking AJAX to the Next Level

© 2009 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.

Page 44: Microsoft ASP.NET: Taking AJAX to the Next Level