Download presentation
Presentation is loading. Please wait.
Published byMelvyn Marshall Modified over 9 years ago
1
08 | What’s Next and Resources Jon Galloway | Tech Evangelist Christopher Harrison | Head Geek
2
Module Overview ASP.NET SignalR Visual Studio 2013 and MVC 5 Sneak Preview ASP.NET Resources
3
Introducing SignalR Abstraction over transports Events instead of task/async Connection management Broadcast or target specific client
4
What does SignalR do?
5
SignalR Fallback Long Polling Forever Frames Server Sent Events Web Sockets
6
What does SignalR do?
7
Client Browser Web Server HTTP GET – Got data?
8
Client Browser Web Server HTTP GET – You do realtime? Sure, I’m a new server. I love realtime. Let’s go! Awesome
9
SignarlR Hub - Server public class ChatHub : Hub { public void SendMessage(String message) { Clients.addMessage(message); }
10
Chat with SignalR Hubs var hub = $.connection.chat; hub.addMessage = function (message) { $("#msgs").append(" " + message + " "); }; $.connection.hub.start().done(function () { $("#send").click(function () { hub.sendMessage($("#msg").val()); });
11
DEMO Using ASP.NET SignalR
12
Visual Studio Updates
13
ASP.NET and Web Tools 2012.2 (Included in Visual Studio Updates)
14
One ASP.NET Browser Link New HTML editor Azure website tooling Scaffolding Owin ASP.NET Identity Visual Studio 2013 RC Download and more info at: http://www.asp.net/vnexthttp://www.asp.net/vnext
15
One ASP.NET Browser Link New HTML editor Azure website tooling Scaffolding Owin ASP.NET Identity Visual Studio 2013 RC Download and more info at: http://www.asp.net/vnexthttp://www.asp.net/vnext
16
One ASP.NET Browser Link New HTML editor Azure website tooling Scaffolding Owin ASP.NET Identity Visual Studio 2013 RC Download and more info at: http://www.asp.net/vnexthttp://www.asp.net/vnext
17
One ASP.NET Browser Link New HTML editor Azure website tooling Scaffolding Owin ASP.NET Identity Visual Studio 2013 RC Download and more info at: http://www.asp.net/vnexthttp://www.asp.net/vnext
18
One ASP.NET Browser Link New HTML editor Azure website tooling Scaffolding Owin ASP.NET Identity Visual Studio 2013 RC Download and more info at: http://www.asp.net/vnexthttp://www.asp.net/vnext
19
DEMO Visual Studio 2013 and MVC 5
20
Resources
21
ASP.NET Questions
22
Web Camps
23
Windows Azure
24
ASP.NET site
25
©2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, Office, Azure, System Center, Dynamics 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.
Similar presentations
© 2025 SlidePlayer.com Inc.
All rights reserved.