16
Building For The Mobile Web

Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications

  • Upload
    others

  • View
    1

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications

Building For The Mobile Web

Page 2: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications

First Half Second Half

(01) What’s New in ASP.NET 4.5 (60 mins) ** MEAL BREAK **

(02) Building and Deploying Websites

with ASP.NET MVC 4 (60 mins)

(06) Building Social Web Applications

with ASP.NET (30 mins)

(03) Creating HTML5 Applications with

jQuery (60 mins)

(07) Building for the Mobile Web (60

mins)

(04) Building a Service Layer with

ASP.NET Web API (30 mins)

(08) Real-time Communications with

SignalR (45 mins)

(05) Leveraging your ASP.NET

Development Skills to Build Office

Apps (15 mins)

(09) Taking advantage of Windows Azure

services (30 mins)

Page 3: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications
Page 4: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications

Microsoft /web ®

Page 5: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications

Microsoft /web ®

Page 6: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications

Microsoft /web ®

Image viaJosh Helfferich @digerati

http://twitter.com/Digeratii/status/165324320179109888

Before the iPhone After the iPhone

Image via Josh Helfferich @digerati

http://twitter.com/Digeratii/status/165324320179109888

Page 7: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications

Microsoft /web ®

Page 8: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications

Microsoft /web ®

Adaptive

Rendering

Display

Modes

Mobile

Template

Page 9: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications

Do nothing

Page 10: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications

<meta name="viewport" content="width=device-width" />

Page 11: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications

<meta name="viewport" content="width=device-width" />

Page 12: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications

Viewport

Page 13: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications
Page 14: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications
Page 15: Building For The Mobile Webdownload.microsoft.com/.../07-BuildingForTheMobileWeb.pdf · (06) Building Social Web Applications with ASP.NET (30 mins) (03) Creating HTML5 Applications

DisplayModeProvider.Instance.Modes.Insert(0,

new DefaultDisplayMode("WinPhone")

{

ContextCondition = (

c => c.Request.UserAgent

.IndexOf("Windows Phone OS") > 0)

});