SlideShare a Scribd company logo
Welcome to

MUGH TechMeet – October
         2011
Introduction to WebMatrix


                              Pranav Ainavolu
                                 Thomson Reuters
     Twitter: @a_pranav | Blog: http://pranavon.net
Agenda
 What is WebMatrix?
 Razor Syntax
 Database Access
 WebGrid
Introducing WebMatrix




   Create   Customize   Publish
Introducing WebMatrix




 Web Server   Database   Development Tool
Who is WebMatrix for?




    I <3 Web Apps.        I want to build web     I’m a professional
I just need a tool that     sites myself with    software developer
makes them easier to        an easy to learn     and I build complex,
configure, customize              tool and      large scale web sites
   and publish them             framework           with a team of
                                                     developers
A lap around WebMatrix


Demo
Introducing Razor
 The easiest way to code websites
 Easy to mix HTML and Code
 Lots of useful Helpers
Razor is a cut above the rest
                           <ul>
                             <% for (int i = 0; i < 10; i++) { %>
     Web Forms
                               <li><% =i %></li>
 (6 markup transitions):     <% } %>
                           </ul>

                           <ul>
                             <?php
         PHP                    for ($i = 0; $i < 10; $i++) {
 (2 markup transitions             echo("<li>$i</li>");
                                }
     & an echo):             ?>
                           </ul>

                           <ul>
        Razor                @for (int i = 0; i < 10; i++) {
                               <li>@i</li>
 (2 markup transitions):     }
                           </ul>
Move from code to markup easily with Razor

                             @{
                                  var name = “John Doe”;
           Option 1:              <div>
          HTML Block                Your name: @name
                                  </div>
                             }

                             @{
                                  var name = “John Doe”;
          Option 2:               <text>
          Text Block                Your name: @name
                                  </text>
                             }

           Option 3:         @{
                                  var name = “John Doe”;
     Single line of output        @: Your name: @name
          in markup          }
Commenting in Razor
                @*
                  <div>
    Option 1:
                    Hello World
    Markup        </div>
                *@


                @{
    Option 2:     //var name = "John Doe”;
                  //@name
     Code       }


                @*
    Option 3:     @{
                    var name = "John Doe";
     Both           @name
                  }
                *@
Razor syntax



Demo
Database
     SQL Compact Edition
       File-based, so it’s portable. Runs without a server.
     Easy to design, easy to code against

Designing


                                                         Coding
            @{
              var db = Database.Open("ArtGallery");
              var product = db.Query("SELECT * FROM PRODUCTS);
            }
Database Access


Demo
Display your data easily with WebGrid
 Displays your data quickly and easily
 Lots of options to customize layout,
 appearance, paging etc.

@{
  var db = Database.Open("ArtGallery");
  var data = db.Query("SELECT * FROM PRODUCTS);
   <div id="grid">
  var@grid.GetHtml(
       grid @{ new WebGrid(data);
            =
}       columns: grid.Columns(
              var db = Database.Open("ArtGallery");
          grid.Column("Name", "Product", style: "product"),
              var data = db.Query("SELECT * FROM PRODUCTS);
<div id="grid"> grid = new WebGrid( format:@<i>@item.Description</i>),
          grid.Column("Description",
              var
  @grid.GetHtml();
          grid.Column("Price", format:@<text>$@item.Price</text>)
                                  source: data,
</div> )                          defaultSort: "Name",
     )                            rowsPerPage: 3);
   </div> }
WebGrid


Demo
Summary
 What is WebMatrix?
 Razor Syntax
 Database Access
 WebGrid
Q&A


Thank You!

More Related Content

PPTX
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
PPTX
Internet and Web Technology (CLASS-6) [BOM]
PPTX
Windows ストアーアプリで SQLite を使ってみよう
PPT
React.js 20150828
KEY
The Ruby/mongoDB ecosystem
PPT
03DOM.ppt
KEY
Schema Design with MongoDB
PDF
Storing tree structures with MongoDB
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
Internet and Web Technology (CLASS-6) [BOM]
Windows ストアーアプリで SQLite を使ってみよう
React.js 20150828
The Ruby/mongoDB ecosystem
03DOM.ppt
Schema Design with MongoDB
Storing tree structures with MongoDB

What's hot (20)

PDF
Using Mongoid with Ruby on Rails
PDF
ActiveRecord vs Mongoid
PPT
Building Your First App with MongoDB
PPTX
MongoDB & Drupal
PPT
Schema design short
PDF
Mastering the MongoDB Shell
PDF
Mongophilly shell-2011-04-26
PDF
Media wiki
PDF
Protecting Your Clients' Privacy
PPTX
JSON-(JavaScript Object Notation)
PDF
Knockout vs. angular
PDF
Building Your First App: An Introduction to MongoDB
PPTX
Rapid and Scalable Development with MongoDB, PyMongo, and Ming
PDF
MongoDB and Ruby on Rails
PDF
GQL cheat sheet latest
PDF
MongoDB & Mongomapper 4 real
PPTX
Building a Scalable Inbox System with MongoDB and Java
KEY
MongoDB and PHP ZendCon 2011
KEY
Mongo db勉強会20110730
PPTX
Using Mongoid with Ruby on Rails
ActiveRecord vs Mongoid
Building Your First App with MongoDB
MongoDB & Drupal
Schema design short
Mastering the MongoDB Shell
Mongophilly shell-2011-04-26
Media wiki
Protecting Your Clients' Privacy
JSON-(JavaScript Object Notation)
Knockout vs. angular
Building Your First App: An Introduction to MongoDB
Rapid and Scalable Development with MongoDB, PyMongo, and Ming
MongoDB and Ruby on Rails
GQL cheat sheet latest
MongoDB & Mongomapper 4 real
Building a Scalable Inbox System with MongoDB and Java
MongoDB and PHP ZendCon 2011
Mongo db勉強会20110730
Ad

Viewers also liked (9)

PPTX
Windows8 and Windows Azure Mobile Services
PPTX
Building Apps for Office 2013
PPTX
Social Engineering with Fibonacci's Numbers
PPT
Parroquia San blas
PPTX
Building Windows Store apps with HTML & Javascript
RTF
Enrique lomeli field lab part one!!
PPTX
Native iOS, Android apps using Xamarin.Forms dotnetConf2016 Hyderabad
PPS
Bring Me A Beer
DOCX
Field lab part2!!
Windows8 and Windows Azure Mobile Services
Building Apps for Office 2013
Social Engineering with Fibonacci's Numbers
Parroquia San blas
Building Windows Store apps with HTML & Javascript
Enrique lomeli field lab part one!!
Native iOS, Android apps using Xamarin.Forms dotnetConf2016 Hyderabad
Bring Me A Beer
Field lab part2!!
Ad

Similar to Introduction towebmatrix (20)

PPTX
Prairie Dev Con West - 2012-03-14 - Webmatrix, see what the matrix can do fo...
PDF
DevTeach Ottawa - Webmatrix, see what the matrix can do for you!!
PDF
WebMatrix, see what the matrix can do for you!!
PPTX
Intro to MVC 3 for Government Developers
PPTX
Joomla! Day Los Angeles 2011 WebMatrix
PPTX
J day la 2011 webmatrix
PPTX
WebMatrix 100-level presentation
PPTX
Intro to .NET for Government Developers
PPTX
Microsoft Web Matrix
PPTX
Web matrix part 2
PPS
Razor new view engine asp.net
PDF
ASP.NET MVC 3
PDF
Asp.Net MVC - Razor Syntax
PPTX
MVC & SQL_In_1_Hour
PPTX
Asp.net With mvc handson
PPTX
PPTX
Asp.Net MVC 5 in Arabic
PPTX
Introducing the ASP.NET MVC 3
PPTX
ASP.NET MVC 5 - EF 6 - VS2015
PPTX
Razor into the Razor'verse
Prairie Dev Con West - 2012-03-14 - Webmatrix, see what the matrix can do fo...
DevTeach Ottawa - Webmatrix, see what the matrix can do for you!!
WebMatrix, see what the matrix can do for you!!
Intro to MVC 3 for Government Developers
Joomla! Day Los Angeles 2011 WebMatrix
J day la 2011 webmatrix
WebMatrix 100-level presentation
Intro to .NET for Government Developers
Microsoft Web Matrix
Web matrix part 2
Razor new view engine asp.net
ASP.NET MVC 3
Asp.Net MVC - Razor Syntax
MVC & SQL_In_1_Hour
Asp.net With mvc handson
Asp.Net MVC 5 in Arabic
Introducing the ASP.NET MVC 3
ASP.NET MVC 5 - EF 6 - VS2015
Razor into the Razor'verse

More from Pranav Ainavolu (18)

PPTX
Containerization with Azure
PPTX
ASP.NET Core Overview
PPTX
Microsoft Azure - Introduction
PPTX
Cross platform mobile app development with Xamarin
PPTX
Understanding Basics of Machine Learning
PPTX
Starting Mobile Development
PPTX
Connected & Disconnected Apps with Azure Mobile Apps
PPTX
Xamarin Dev Days - Xamarin.Forms
PPTX
Xamarin Forms
PPTX
Automated Testing & Auto Scaling your Apps with Microsoft & Open Source Techn...
PPTX
Building A Conversational Bot Using Bot Framework and Microsoft
PPTX
The Internet of Things with Azure Service Bus
PPTX
Dev/Test Scenarios in the DevOps World
PPTX
Using Visual Studio to build XAML Universal Apps
PPTX
Designing cross-platform User Interface with native performance using Xamarin...
PPTX
Building Android, iOS and Windows 8 Apps with Windows Azure Mobile Services
PPTX
Whats New in the Visual Studio 2013 IDE
PPTX
Whats New in Excel 2013
Containerization with Azure
ASP.NET Core Overview
Microsoft Azure - Introduction
Cross platform mobile app development with Xamarin
Understanding Basics of Machine Learning
Starting Mobile Development
Connected & Disconnected Apps with Azure Mobile Apps
Xamarin Dev Days - Xamarin.Forms
Xamarin Forms
Automated Testing & Auto Scaling your Apps with Microsoft & Open Source Techn...
Building A Conversational Bot Using Bot Framework and Microsoft
The Internet of Things with Azure Service Bus
Dev/Test Scenarios in the DevOps World
Using Visual Studio to build XAML Universal Apps
Designing cross-platform User Interface with native performance using Xamarin...
Building Android, iOS and Windows 8 Apps with Windows Azure Mobile Services
Whats New in the Visual Studio 2013 IDE
Whats New in Excel 2013

Recently uploaded (20)

PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Approach and Philosophy of On baking technology
PPT
Teaching material agriculture food technology
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
cuic standard and advanced reporting.pdf
PDF
Machine learning based COVID-19 study performance prediction
PPTX
A Presentation on Artificial Intelligence
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
Electronic commerce courselecture one. Pdf
PDF
Modernizing your data center with Dell and AMD
Chapter 3 Spatial Domain Image Processing.pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Understanding_Digital_Forensics_Presentation.pptx
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Mobile App Security Testing_ A Comprehensive Guide.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
Review of recent advances in non-invasive hemoglobin estimation
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Approach and Philosophy of On baking technology
Teaching material agriculture food technology
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
cuic standard and advanced reporting.pdf
Machine learning based COVID-19 study performance prediction
A Presentation on Artificial Intelligence
Encapsulation_ Review paper, used for researhc scholars
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Electronic commerce courselecture one. Pdf
Modernizing your data center with Dell and AMD

Introduction towebmatrix

  • 1. Welcome to MUGH TechMeet – October 2011
  • 2. Introduction to WebMatrix Pranav Ainavolu Thomson Reuters Twitter: @a_pranav | Blog: http://pranavon.net
  • 3. Agenda  What is WebMatrix?  Razor Syntax  Database Access  WebGrid
  • 4. Introducing WebMatrix Create Customize Publish
  • 5. Introducing WebMatrix Web Server Database Development Tool
  • 6. Who is WebMatrix for? I <3 Web Apps. I want to build web I’m a professional I just need a tool that sites myself with software developer makes them easier to an easy to learn and I build complex, configure, customize tool and large scale web sites and publish them framework with a team of developers
  • 7. A lap around WebMatrix Demo
  • 8. Introducing Razor  The easiest way to code websites  Easy to mix HTML and Code  Lots of useful Helpers
  • 9. Razor is a cut above the rest <ul> <% for (int i = 0; i < 10; i++) { %> Web Forms <li><% =i %></li> (6 markup transitions): <% } %> </ul> <ul> <?php PHP for ($i = 0; $i < 10; $i++) { (2 markup transitions echo("<li>$i</li>"); } & an echo): ?> </ul> <ul> Razor @for (int i = 0; i < 10; i++) { <li>@i</li> (2 markup transitions): } </ul>
  • 10. Move from code to markup easily with Razor @{ var name = “John Doe”; Option 1: <div> HTML Block Your name: @name </div> } @{ var name = “John Doe”; Option 2: <text> Text Block Your name: @name </text> } Option 3: @{ var name = “John Doe”; Single line of output @: Your name: @name in markup }
  • 11. Commenting in Razor @* <div> Option 1: Hello World Markup </div> *@ @{ Option 2: //var name = "John Doe”; //@name Code } @* Option 3: @{ var name = "John Doe"; Both @name } *@
  • 13. Database  SQL Compact Edition  File-based, so it’s portable. Runs without a server.  Easy to design, easy to code against Designing Coding @{ var db = Database.Open("ArtGallery"); var product = db.Query("SELECT * FROM PRODUCTS); }
  • 15. Display your data easily with WebGrid  Displays your data quickly and easily  Lots of options to customize layout, appearance, paging etc. @{ var db = Database.Open("ArtGallery"); var data = db.Query("SELECT * FROM PRODUCTS); <div id="grid"> var@grid.GetHtml( grid @{ new WebGrid(data); = } columns: grid.Columns( var db = Database.Open("ArtGallery"); grid.Column("Name", "Product", style: "product"), var data = db.Query("SELECT * FROM PRODUCTS); <div id="grid"> grid = new WebGrid( format:@<i>@item.Description</i>), grid.Column("Description", var @grid.GetHtml(); grid.Column("Price", format:@<text>$@item.Price</text>) source: data, </div> ) defaultSort: "Name", ) rowsPerPage: 3); </div> }
  • 17. Summary  What is WebMatrix?  Razor Syntax  Database Access  WebGrid

Editor's Notes

  • #3: 1 minuteWelcome, in the next few hours we are going to learn about WebMatrix.[Introduce yourself]
  • #4: 1 minuteThis session is broken down into three parts, each of approximately 50-60 minutes. At the end of this training you will have a good base understanding of WebMatrix and how to build websites and web applications using the tool and framework.In Part 1 you will learn what WebMatrix is, who the intended users are for WebMatrix and what the Razor Syntax is. You will also learn how to access a database and how to use a WebGrid control to present its data in table format.In Part 2 you will learn how to use Layouts to maintain a consistent look and feel across all of the pages within your website. You will also be introduced to the use of helpers to manage different themes in your site, connecting to Facebook and more. Then you will learn about security and websites membership. Finally you will explore how the URL routing works in WebMatrix.In Part 3 you will discover how to create your own helpers to reuse your components in WebMatrix and we will discuss about WebMatrix and Open Source Software Web Applications integration. You will then learn how to publish your web applications. We will also discuss about when and how to move to Visual Studio and ASP.NET MVC application development.
  • #5: 1 minuteWebMatrix is a free tool that makes it really easy to create, configure and publish your web sites and web applications. It’s built on Microsoft’s in depth knowledge of web platforms, tools and frameworks and surfaced in a more approachable and straightforward way. As we go through the training you should keep these three main focus areas in your mind; create, customize and publish – we’ll be touching on them as we cover the different areas of WebMatrix.
  • #6: 1 minuteWebMatrix comes with everything you need to get started building websites and web applications:A complete and integrated development environment, with a small download and a simple install. You get a database engine (SQL Server Compact Edition) to handle your data. All the structures you create in this database engine will be compatible with professional versions of SQL Server.WebMatrix supports a Web Server (IIS Express) to serve all your web pages. This web server is compatible with the professional versions of IIS as well.WebMatrix also comes with a new, simple programming framework that allows for rapid development of web sites and web applications. It supports Razor, the latest and simplifiedway to code web sites. It also provides a gallery of free open source applications to complement your development.It comes with an integrated installer that manages the heavy lifting of downloading and installing each component.
  • #7: 3 minutesWhen we look at all the different profiles of people creating websites we see certain patterns emerge.First, there’s a group of people that like to use the large number of rich web applications out there as a starting point, and then add some specific functionality. They need a quick and easy way to customize and publish their solutions. Many of these web applications are tailored for specific tasks like Content Management Systems or eCommerce websites. These developers will often repeat this process many times for each customer, their goal is to make the process of acquiring the application, customization and publishing it as quick as possible.A second group need to create web apps from scratch. These developers are hobbyists, beginners and people who need a tool that is easy to learn and that allows them to focus on the application functionality instead of developers’ details.Finally, the group of professional developers. They need a powerful tool, full of features and able to work in team, perhaps distributed ones. They will use a source and version control and will need a testing framework to write their own unit tests. This tool needs to support the addition of 3rd party powerful extensions.WebMatrix is built for those developers that like to start from scratch or by building from a 3rd party web applications.
  • #8: 10 minutesSee demo script for overview
  • #9: 1 minuteWhen you create a new website from scratch in WebMatrix, you will be using the new Razor syntax. It’s very compact and easy to read and write, and allows you to flow between code and markup seamlessly. You can write your code in languages such as C# or VB, and it’s extensible via Helpers (we’ll talk about Helpers in Part 3)
  • #10: 2 minutesWe’ve designed Razor to be concise and easy to use. When we think about the way developers use a language we take into account the context switching they have to do and also the number of keystrokes. The way that Razor allows you to transition seamlessly between markup and code makes for a much more natural and fluent style and also helps to reduce the number of keystrokes and context switching that a developer has to do, thinking about markup and code separately. With Razor, markup and code are really the same thing.We think it’s the easiest way to code websites and when you compare it to the other languages out there, it’s easy to see why.
  • #11: 1 minuteThe transition from code to markup is one of the most elegant things about Razor but there a few rules that are worth knowing about. Option 1:Code is the primary citizen in a code block, not HTML. This means the parser will always expect code unless it finds valid opening (and closing) tags. In the first option block you see that after the @{ a name variable is defined. No additional tag is necessary. A &lt;div&gt; section tells Razor that what follows should be taken as literal. Then the @name indicates a variable that needs to be replaced with its value.Option 2:Similarly, to explicitly call out text in a code block as HTML, wrap it in a &lt;text&gt; tagOption 3:Single line of output within markup can be denoted by @:This option is useful when you don’t want to render an HTML element as part of the output. Extra Knowledge (Advanced):The Parser that understands Razor is itself a standalone assembly (System.Web.Razor.dll) which has no dependencies on ASP.NET which means you can use it to parse CSHTML/VBHTML files and produce C#/VB code in any .NET application.
  • #12: 1 minuteIt’s always good practice to comment your code. In Razor we have the following options for commenting:Option 1:You can comment a block by using @* … *@Please note that this method could not be recursive (you could not have a @* inside another @*)Option 2:You can comment lines by using // (in C#) the same way you do in your code files.Option 3:If you need to comment a whole razor block, you should add a @* before the beginning of the code block and a *@ after it’s finish.
  • #13: 5 minutesSyntax moving from code to markupObjectInfo()ServerInfo()
  • #14: 2 minutesThe database that comes with WebMatrix is SQL Compact Edition, or SQL CE for short.It’s free, lightweight and doesn’t require a separate server to run – which makes it much easier to get setup and running than traditional versions of SQL Server like SQL Server Express.SQL Compact Edition includes tools to manage your tables and data and because it’s file-based, you simply need to copy the database files to transport your database to another machine. This is really useful if you are sharing a database with another developer.This sample code shows how to connect to an ArtGallery Database and then perform a query with SQL to retrieve the ArtGallery products.
  • #15: 5 minutesCreating DBDesigning DBAccessing DB using Razor(introduce URLData)
  • #16: 2 minutesAs we’ve seen, the database design and access from Razor code in WebMatrix is easy. Often when we’re building websites, we’ll want to render data in some form of table. The WebGrid can help to make this easy to do. Build 1In it’s simplest form, just give the WebGrid data and it will render it out in a valid HTML table. WebMatrix will make all the magic for you. But this has a few drawbacks: You’re not choosing the columns you want to show and they will be named as the field names in the database.Build 2 In the second sample, you explicitly state which columns to include in the WebGrid, their title (e.g.: «Product» instead of «Name») and how they will be formatted: Product column will use a CSS style, Description will appear in italic font, and so on.Build 3In the last sample, you can see that we order the data by the «Name» column and by simply defining one parameter, we state that we want 3 rows per page. WebMatrix will do the rest for you.
  • #17: 5 minutesBuild on previous data demo and place data in the WebGrid and render it.Add columns and paging.Perhaps show ajax if we have time.
  • #18: 1 minuteWe have learnt what is WebMatrix and who is it for.We had an overview Razor, a new way to code websites.We learned how to consume a database and how to display its data with a WebGrid HelperFinally, we have learned how to customize the data displayed in WebGrids.