Demo: File->New Project Demo: Bundling & Minification.

Slides:



Advertisements
Similar presentations
Module 1: Creating Responsive Pages with Ajax Creating Partial-Page Updates by Using AJAX Scripting Actions on the Web Client.
Advertisements

@ScotHillier Web Parts Workflows Pages Libraries App Parts SharePoint-Hosted Apps Provider-Hosted Apps.
Major Sponsors Minor Sponsors. Overview What is a Search Driven Site?
PROF. MAULIK PATEL CED, GPERI Mobile Computing Gujarat Power Engineering and Research Institute 1 Prepared By: Prof. Maulik Patel.
@ScotHillier Web Parts Workflows Pages Libraries App Parts SharePoint-Hosted Apps Provider-Hosted Apps.
Facebook Apps Teppo Räisänen. Facebook apps Facebook apps are normal Web pages – They are run inside Facebook so they can take advantage of Facebooks.
Building Social Web Apps in ASP.NET. First HalfSecond Half (01)What’s New in ASP.NET 4.5 (60 mins)** MEAL BREAK ** (02) Building and Deploying Websites.
06 | Implementing Web APIs Jon Galloway | Tech Evangelist Christopher Harrison | Head Geek.
Building Real Time Applications with ASP.NET SignalR 2.0
Intelligent Tutoring System Mobile Communication Team Drew Boatwright Nakul Dureja Richard Liou.
Brady Gaster Microsoft Corporation. Here’s some data!
Agenda What is AJAX? What is jQuery? Demonstration/Tutorial Resources Q&A.
The new way to work together SharePoint Products Cloud Server Free.
BY LINDA MOHAISEN MIKE ZIELINSKI The Tree Census Project.
ASP.NET MVC Tips and Tricks Al Wilkinson. Hi! I’m Al  First program in Logo in 1985 in 1st grade #loveatfirstbyte  Started HTML in 1996, led to web.
WebMatrix 2 /* web with benefits */. Everything You Need Start create new from OSS apps or templates, or start with existing sites hosted remotely or.
Deferred Site Collection Upgrade Self-Service Site Collection Upgrades.
Module 11 : Backup and Restore Jong S. Bok
ASP.NET 5 Visual Studio 2015 Templates Bill Wolff Rob Keiser June 10, 2015.
.Net is a collection of libraries, templates and services designed to make programming applications of all kinds, easier, more flexible (multi platform),
ASP. Net is a rich web framework that leverages well known patterns and JavaScript frameworks to build great web experiences quickly.
Real Time Mobile Apps using Xamarin and SignalR
Datacenter LOB web service LOB app Partner Mobile Device.
08 | What’s Next and Resources Jon Galloway | Tech Evangelist Christopher Harrison | Head Geek.
ASP.NET Web API. ASP.NET Members MS Open Source ASP.NET MVC 4, ASP.NET Web API and ASP.NET Web Pages v2 (Razor) now all open source ASP.NET MVC 4, ASP.NET.
WHO WILL BENEFIT FROM THIS TALK TOPICS WHAT YOU’LL LEAVE WITH Developers Interested in HTML5 Games Interested in Windows Azure Interested in Game Development.
JDojo and Its Usage Te-Hsin Shih 04/30/2013. Dojo Dojo Toolkit is an open source JavaScript library designed to ease the rapid development of cross-platform,
Pushlets Introduce A comet framework Zhang Haipeng
ASP.NET SignalR SoftUni Team Technical Trainers Software University
Farm Site List Data External Lists ClientOM Client OM REST APIs.
Welcome to the Minnesota SharePoint User Group February 13 th, 2013 SharePoint 2013 – Developers Track - Client Side Rendering.
Building and Diagnosing Applications using Visual Studio and Azure SDK Paul Yuknewicz Principal PM Manager.
Advanced Windows Store App Development with HTML5 Refresh / Exam Prep M6: Tools and Asynchronous Programming Jeremy Foster Microsoft Technical.
Building Azure Web Apps with Node.js and the Spotify Web API Daniel Larsen M361.
PMT/HPD Database University of Iowa. Current Database State 2 Database Locations  MySQL omega.physics.uiowa.edu Used by web interface on Iowa‘s HEP website.
Message Framework Topic subscribe for javascript/flex client.
Loops Pretest var i=1, sum=0; while (i
CNIT 133 Interactive Web Pags – JavaScript and AJAX Popup Boxes.
The ECOST Web-based platform for data providers and for data users.
Nivo 300 ASP.NET MVC 4 Danijel Malik Artifis Danijel Malik s.p.
An ad in the yellow pages can cost up to $x It’s the same ad until the next publication! A full page ad in a specialty magazine can cost $2000 It’s the.
Website Design and Construction Services and Standards.
Hartelijk welkom VB Event 26 september 2012 ‘Visual Studio 2012 voor de VB.NETWEB developer’ Alex Thissen – Achmea.
Building a Chrome extension Chance Feick |. Outline History Development – Manifest File – Content Scripts – chrome.* API Installation Deployment Live.
1 Company Confidential Skin a Complete DotNetNuke Website Using HTML5 and CSS3 in One Hour Amelia Marschall Partner & Creative Director.
Build Hybrid Mobile Apps with Ionic, Angular, & Cordova Brian
Redis and Redis with .NET
Deploying Web Application
What's new in the world of SharePoint development and deployment
NodeJS for .Net Developers
TechEd /1/2018 7:56 AM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
ASP.NET SignalR SoftUni Team C# MVC Frameworks Technical Trainers
6/4/2018 4:17 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS.
Why API?.
Kendo UI ASP.NET MVC Wrappers
Twitter & NoSQL Integration with MVC4 Web API
SharePoint Cloud hosted Apps
Building real-time web apps with WebSockets using IIS, ASP.NET and WCF
Slides and images stolen from “real” .NET Conf. presenters
A Quick Overview of ASP.NET Core 1.0
ASP.NET Core* MVC and Web API Shahed Chowdhuri
What’s new in ASP.NET Core and Entity Framework 2.2 (Preview 3)
Lighting Up Real-time Web Communications with SignalR
Microsoft Connect /28/2019 2:20 AM
Louis DeJardin | Software Developer, Microsoft
If the person is married and has more than 5 dependents MOVE MSG-1 TO MSG-PR, if the person is married and does not have more than 5 dependents MOVE MSG-2.
Client-Server Model: Requesting a Web Page
Blazor A new framework for browser-based .NET apps Ryan Nowak
SQL Azure to .NET Developers
Jon Galloway | Technical Evangelist
Presentation transcript:

Demo: File->New Project

Demo: Bundling & Minification

@{ string myClass = null; if (someCondition) { myClass = ”shinyFancy”; } } }>Content

@{ string myClass = null; if (someCondition) { myClass = ”shinyFancy”; } Content

Database Migrations

Demo: Database Migrations with EF 4.3

Source: – current APIs: 4535www.programmableweb.com + 100%+ 50%+ 3400%+ 235%+ 71%+ 86%+ 46%+ 63% + 16%

Demo: Building a Web API

Demo: Calling a Web API from JavaScript

Demo: Unit Testing a Web API

Demo: Hosting Web APIs

Mobile Web

Adaptive Rendering Display Modes Mobile Template

Demo: Mobile Web

Client – JavaScriptServer -.NET var hub = $.connection.chat; hub.addMessage = function (msg) { $("#msgs").append(" " + msg + " "); }; $.connection.hub.start().done(function() { $("#send").click(function() { hub.sendMessage($("#msg").text()); }); public class Chat : Hub { public void SendMessage(string message) { Clients.addMessage(message); }

Demo: SignalR

Questions