Dynamic Languages and the Web Jimmy Schementi Microsoft

Slides:



Advertisements
Similar presentations
Accelerating Content Management Server solutions with MCMS.RAPID Mark Harrison – Microsoft Tony Sloggett.
Advertisements

Silverlight 2 CoreCLR Bringing the power of.NET to the net Andrew Pardoe, Common Language Runtime.
1 Introduction to Silverlight 1.1 Mark Smith
Building Your First Great Silverlight 2 Application Guy Burstein Microsoft Israel
VAR318: Developing Service Oriented Workflows Brian Noyes IDesign Inc (
IronPython IronRuby
Michael S. Scherotter Microsoft Corporation
René Balzano Technology Solution Professional Data Platform Microsoft Switzerland Database Development with SQL Server Data Tools (SSDT)
Virtual techdays INDIA │ august 2010 Building ASP.NET applications using SQL Server Compact Chaitanya Solapurkar │ Partner Technical Consultant,
AMS304: Introduction to the ASP.NET Model View Controller (MVC) Framework Scott Hanselman Eilon Lipton Microsoft Microsoft
Online Job Portal with Exam
It’s always better live. MSDN Events INTRODUCTION TO SILVERLIGHT prepared by Joe Nov INTRODUCTION TO SILVERLIGHT prepared by Joe Nov
CSC 494/594 C# and ASP.NET Programming. C# 2012 C# Object-oriented language with syntax that is similar to Java.
Smart Clients: What’s New In Orcas? Saurabh Pant Program Manager UI Fx and Services Team
WEB 304 An Overview of ASP.NET and Windows Workflow Foundation Kashif Alam Program Manager Developer Division Microsoft Corporation.
OFC 303 Advanced Word XML: Customer-Defined Schemas Brian Jones Program Manager Authoring Services.
Microsoft Solutions for Learning (Free) Mark Becker C/D/H Partner PMP, MCSE,MCNE.
1 Jon Box Architect Evangelist Microsoft John Mullinax Platform Strategy Advisor Microsoft.
VWF310: Encapsulate Custom Business Processes with Custom WF Activities Brian Noyes IDesign Inc (
10/28/2002 (c) 2002 Orbonyx Corp. All Rights Reserved. GotDotNet – Building Upon the Framework Roy Ogborn, Lead Consultant Orbonyx Corp.
Craig Kitterman Sr. Technical Evangelist Microsoft Corporation Session Code: INT304.
What’s New for Web Developers in ASP.NET and Visual Studio 2008 Kate Gregory Microsoft Regional Director
Developing ASP.NET AJAX Controls with Silverlight Barry Gervin Microsoft Regional Director John Bristowe Developer Advisor, Microsoft.
Lap Around Windows Presentation Foundation Rob Relyea PRS305 Lead Program Manager Windows Presentation Foundation
Jeremy Thake Technical Product Building cross-platform apps that integrate with O365 API’s using Xamarin in Visual Studio.
October 11-14, Seattle, WA Top 10 Ways To Break Your Deployments Or: How to Avoid Your Sorry Fate Dev Nambi Senior Software Engineer Microsoft.
DEV364 Visual Studio Team System “Enabling Better Software Through Better Testing” Keith Brown Pluralsight LLC.
ASP.NET 5 Unleashed Javier Lozano
VS33 Developer Productivity Enhancements in Visual Studio 2015 Robert Green Technical Evangelist, DX,
DEV221 Windows Forms in Visual Studio 2005: An Overview Saurabh Pant Program Manager Microsoft Corporation.
Virtual techdays INDIA │ august 2010 Building & Deploying Windows Azure Application using VS2010 Saranya Sriram │ Developer Evangelist, Microsoft.
Dynamic Languages Initiative Silverlight ASP.NET Web Services Summary.
Введение в DLR UNETA 16 апреля, 2010 Иван Колодяжный, Software Developer Teamdev Ltd.
Building Complete Web Application Using ASP.NET 3.5 & Visual Studio 2008 Omar Khan Group Program Manager Visual Studio.
Visual Studio 2015 Tips and Tricks Robert Green Program Manager Evangelism, DX,
1 Notefied (Early Prototype) Team A Candy Chiang (Project Manager) Daria Craciunoiu (Lead Project Architect) Hin-Chung Lam (Lead Developer) Tim Wong (Lead.
Developing for the Future with Visual Studio 11 Karl Davies-Barrett CEE DPE Tech Lead, Microsoft Brian Keller, Microsoft Sr. Technical Evangelist, Microsoft.
Unit Testing Silverlight & Windows Phone Applications Jeff Wilcox Senior Software Development Engineer Silverlight
A Detailed Introduction To Visual Studio.NET CRB Tech ReviewsCRB Tech Reviews introduces you to the world of Visual.
DES201 - Developers and Designers collaboration Level 200 Aude Mousset Artistic director i-Breed - France Dick Lantim User eXperience Advisor Microsoft.
Building Complete Web Application Using ASP.NET 3.5 & Visual Studio 2008 Omar Khan Group Program Manager Visual Studio.
DAT303 - Entity Framework: Application Patterns Pablo Castro Technical Lead, Microsoft Corporation.
PARTNER SUMMIT 2014 CrownPeak Customer Success and Product Teams
Building and Consuming REST-based Data Services for the Web
/* LIFE RUNS ON CODE*/ Konstantinos Pantos Microsoft MVP ASP.NET
DEV260 Microsoft Visual Studio 2005 Team System: Managing the Software Lifecycle with Visual Studio 2005 Team System Bindia Hallauer Senior Product Manager.
Jim Nakashima Program Manager – Cloud Tools Microsoft Corporation
Data Science & Web Dev with Python in Visual Studio
Using Dynamic Languages to Build Scriptable Apps
Visual Studio 2008 Abdul Rahman .Y Microsoft Student Partner.
SQL Server Data Tools Gert Drapers
11/12/2018 6:58 PM © 2004 Microsoft Corporation. All rights reserved.
Visual Report Design Bringing Sexy Back Paul Turley Mentor, SolidQ.
Tech Ed North America /27/ :47 PM Required Slide
Pumping Iron on the web IronRuby IronPython by Jimmy Schementi
Customizing the SharePoint Mobile Experience
MIX 09 12/5/2018 3:21 AM © 2009 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered.
MIX 09 12/8/2018 4:33 PM © 2009 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered.
Tech Ed North America /1/ :36 AM Required Slide
What's New in Visual Studio 2005
ASP.NET 4 Core Runtime for Web Developers
Quickly Implementing New Cross-Browser Features with Gestalt
Presenter #1 • Presenter #2 • Presenter #3 Presenter #4 • Presenter #5
Building Silverlight Apps with RIA Services
4/12/2019 5:27 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Visual Studio Tools for Unity 2.0 Preview
Governing Your Enterprise with Policy-Based Management
Advanced Dashboard Creation with PerformancePoint Services 2010
PNW SQL Users Group August 10th, 2011
Presentation transcript:

Dynamic Languages and the Web Jimmy Schementi Microsoft

Session Objectives Create web applications with dynamic languages Understand the Microsoft dynamic languages initiative

Demo Dynamic Languages in Silverlight 1.1 Alpha

Silverlight and Dynamic Languages Bring Silverlight to dynamic language programmers Enable iterative learning and development Release (with sources) on Codeplex and RubyForge

Demo IronPython in ASP.NET Visual Studio Integration

ASP.NET and Dynamic Languages Bring a great framework to Dynamic Languages Shipped in ASP.NET Futures

int i = Convert.ToInt32(Request.QueryString[“Name"]); IronPython example - Querystring

int i = Convert.ToInt32(Request.QueryString[“Name"]); IronPython example - Querystring

i = int(Request.Name) IronPython example - Querystring

IronPython example - Databinding

IronPython example - Databinding

IronPython example - Databinding

LocationsPicker lp = (LocationsPicker) FormView1.FindControl("LocationPicker1"); IronPython example - FindControl

LocationsPicker lp = (LocationsPicker) FormView1.FindControl("LocationPicker1"); IronPython example - FindControl

lp = FormView1.LocationPicker1 IronPython example - FindControl

Demo Web Services and Dynamic Languages

Web Services and Dynamic Languages Simplifies consumption of Web Services Demonstrates power of Dynamic Languages Source available on CodePlex ●

Dynamic Languages Initiative Community Microsoft Common Language Runtime (CLR) Frameworks Dynamic Language Runtime(DLR) Languages IronPython IronRuby JSx VBx Languages Scripting Hosts Silverlight ASP.NET Hosts Visual Studio Integration

Summary Dynamic Languages Initiative ● ● Silverlight ● ● ASP.NET & VS Integration ●

Resources Technical Communities, Webcasts, Blogs, Chats & User Groups blogs.msdn.com/ironpythonblogs.msdn.com/ironpython (IronPython blog) (John Lam’s blog) (Jim Huginin’s DLR blog) (My blog) TechEd2007 Talks ● IronPython and Dynamic Languages on.NET IronPython and Dynamic Languages on.NET ● Dynamic Languages on the Web Dynamic Languages on the Web Mix07 Talks ● Mahesh and Polita’s Dynamic Data controls talk Mahesh and Polita’s Dynamic Data controls talk ● Jim and John DLR/SL talk Jim and John DLR/SL talk

Your Feedback is Important Please fill out a session evaluation form and either put them in the basket near the exit or drop them off at the conference registration desk. Thank you!