Visual Web Developer Express

broken image


Developer Express Inc is proud to announce the immediate availability of its newest release, DevExpress v20.2. Built and optimized for desktop, web, and mobile developers alike. DevExpress Wins 20 Visual Studio Reader's Choice Awards. Visual Studio Team Foundation Server Express 2012.4 is a source code control, project management, and team collaboration platform at the core of the Microsoft suite of Application Lifecycle Management tools, which help individuals and small teams be more agile, collaborate more effectively, and deliver quality software. On the 'Visual Studio Express 2010' disk VS2010Express.iso which I downloaded from Microsoft it turned out that Visual Studio Express consist of. Visual C#, Visual Basic, Visual C, 'Visual Web developer'. So to answer the original question here I think that Visual Web developer is one part of the whole disk called Visual.

-->

by Tom FitzMacken

This article explains how you can use Visual Studio or Visual Web Developer Express to program ASP.NET Web Pages (Razor) websites.

What you'll learn

  • What you need to install (if anything) to work with ASP.NET Web Pages in your version of Visual Studio.
  • How to add support for ASP.NET Web Pages to Visual Web Developer 2010 Express.
  • How to use features in Visual Studio to work with ASP.NET Razor pages, including IntelliSense and the debugger.

Software versions used in the tutorial

  • ASP.NET Web Pages (Razor) 3
  • Visual Studio 2013
  • WebMatrix 3
Developer

This tutorial also works with ASP.NET Web Pages 2, Visual Studio 2012, Visual Studio 2010, and WebMatrix 2.

You can program ASP.NET Web pages with Razor syntax using WebMatrix or many other code editors. You can also use Microsoft Visual Studio which is a full-featured integrated development environment (IDE) that provides a powerful set of tools for creating many types of applications (not just websites). To work with ASP.NET Razor pages, you can use Visual Studio 2017.

Two particularly useful features that Visual Studio provides for programming with ASP.NET Razor web pages are:

  • IntelliSense. The IntelliSense feature built into Visual Studio is more comprehensive than IntelliSense in WebMatrix.
  • Debugger. The debugger lets you troubleshoot your code by stopping a program while it's running, examining variables, and stepping through the code line by line.

Using Visual Studio with Different Versions of ASP.NET Web Pages

To develop ASP.NET web apps in Visual Studio 2017, install the ASP.NET and web development workload.

Visual Studio 2012 and Visual Studio 2013 include support for ASP.NET Web Pages. (The packages that are required in order to support ASP.NET Web Pages are installed when you install Visual Studio.)

Visual Studio 2010 does not include support by default for ASP.NET Web Pages. To use ASP.NET Web Pages with Visual Studio 2010, you must install the ASP.NET MVC package. To get ASP.NET Web Pages 2, you install ASP.NET MVC 4.

The following table summarizes the support for ASP.NET Web Pages in different versions of Visual Studio.

Visual Studio 2010Visual Studio 2012Visual Studio 2013
ASP.NET Web Pages 2Install ASP.NET MVC 4(Included)(Included)
ASP.NET Web Pages 3Update to ASP.NET Web Pages 3 through NuGet(Included)

To work with Visual Studio 2010, see Installing Support for ASP.NET Web Pages in Visual Studio 2010.

Launching Visual Studio from WebMatrix

If you have started a project in WebMatrix and want to switch to Visual Studio, WebMatrix provides a button to easily open the project in Visual Studio. You must have Visual Studio installed on your computer for this button to be enabled. The following image shows the button in WebMatrix.

When you click the button, the project is opened in Visual Studio. You can switch back and forth between WebMatrix and Visual Studio without any problems. You will be notified if any files have changed in the other environment and need to be reloaded to get the latest changes.

Creating ASP.NET Razor Site in Visual Studio

To create an ASP.NET Razor website in Visual Studio:

  1. Open Visual Studio.

  2. In the File menu, click New Web Site.

  3. In the New Web Site dialog box, select the language to use (Visual C# or Visual Basic).

  4. Select the ASP.NET Web Site (Razor) template.

  5. Click OK.

Your new project exists and is populated with some default web pages to help you get started.

Using IntelliSense

Now that you've created a site, you can see how IntelliSense works in Visual Studio.

  1. In the website you just created, open the Default.cshtml page.

  2. After the

    tags in the page, type @ServerInfo. (including the dot). Notice how IntelliSense displays the available methods for the ServerInfo helper in a drop-down list.

  3. Select the GetHtml method from the list and then press Enter. IntelliSense automatically fills in the method. (As with any method in C#, you must add () characters after the method.)The completed code for the GetHtml method looks like the following example:

  4. Press Ctrl+F5 to run the page. This is what the page looks like when displayed in a browser:

  5. Close the browser.

Using the Debugger

  1. At the top of the Default.cshtml page, after the line that begins with Page.Title, add the following line of code:

  2. In the gray margin of the editor to the left of the code, click next to this new line in order to add a breakpoint. A breakpoint is a marker that tells the debugger to stop running the program at that point so you can see what's happening.

  3. Remove the call to the ServerInfo.GetHtml method, and add a call to the @myTime variable in its place. This call displays the current time value that's returned by the new line of code.

  4. Press F5 to run the page in the debugger. The page stops on the breakpoint that you set. The following image shows what the page looks like in the editor with the breakpoint (in yellow).

  5. In the Debug toolbar, click the Step Into button (or press F11) to run the next line of code. Each time you click this button, you advance the execution to the next line of code.

  6. Examine the value of the myTime variable by holding your mouse pointer over it or by inspecting the values displayed in the Locals and Call Stack windows. Visual Studio display the value of the variable.

  7. When you're done examining the variable and stepping through code, press F5 to continue running the page without stopping at each line. When you've finished stepping through all the code, the browser displays the page.

To learn more about the debugger and about how to debug code in Visual Studio, see Walkthrough: Debugging Web Pages in Visual Web Developer.

Using Razor in ASP.NET MVC projects with Visual Studio

The Razor syntax is also used extensively in ASP.NET MVC projects. MVC is a powerful, patterns-based way to build dynamic websites. If your ASP.NET Web Pages site becomes difficult to maintain, you might want to consider converting it to an ASP.NET MVC application. For an example of creating an MVC application, see Getting Started with ASP.NET MVC 5.

Installing Support for ASP.NET Web Pages in Visual Studio 2010

This section shows how to install Visual Web Developer Express 2010 and the ASP.NET Web Pages Tools for Visual Studio.

  1. If you don't already have the Web Platform Installer, download it from the following URL:

  2. Run the Web Platform Installer.

  3. Click the Products tab.

  4. Search for ASP.NET MVC 4 (for ASP.NET Web Pages 2) and then click Add. These products include Visual Studio tools for building ASP.NET Razor websites.

  5. Click Install to complete the installation.

Visual C++ 2010 Express is part of the Visual Studio 2010 Express family, a free set of tools that Windows developers at any level can use to create custom applications using basic and expert settings.
Last update 11 Dec. 2013 Licence Free OS Support Windows DownloadsTotal: 594,582 | Last week: 1,328Ranking#1 in C / C++ / C#PublisherMicrosoft
Editor's rating:Read the editor's review

Screenshots of Microsoft Visual C++ 2010 Express

View more screenshots

Microsoft Visual C++ 2010 Express Editor's Review

Microsoft Visual C++ 2010 Express is a tool that lets you build native Windows or .NET Framework managed Windows applications. Part of the Windows Visual Studio 2010 Express suite of tools, it's a powerful programming language and Integrated Development Environment (IDE) that can give you a lot of control when building applications for Windows.
This release of Visual C++ 2010 Express has some important new features. Its IDE is now based on Windows Presentation Foundation (WPF). Visual C++ 2010 Express now offers support for .NET Framework 4, the new .NET framework. New language features have been added, including six new compiler features.
Usability has been improved, with an updated interface that's better-looking and easy to navigate. The text editor has been updated with a new font. Error detection has been overhauled -- you'll see a red underline if there's a mistake. The existing box selection functionality has been expanded; as well as being able to draw a box around a section of code to copy or delete it, you can now add a section of text to every line by typing it once, and copy-paste text between two boxes. The 'Navigate To' feature lets you jump to a particular symbol or string. There's a Highlighting References feature than highlights every instance of a particular symbol if you click on one instance.
All the new features come at a cost, however. Visual C++ 2010 Express is rather more resource-hungry than previous versions. This means that it can be noticeably slower to run.
Pro's: Expanded functionality and an improved interface make this a powerful developer tool. Free.
Con's: Requires more memory and processor power than older versions.
Conclusion: Visual C++ 2010 Express is a valuable free tool for developing applications for Windows and the web.

Microsoft Visual C++ 2010 Express Publisher's Description

Visual C++ 2010 Express is part of the Visual Studio 2010 Express family, a free set of tools that Windows developers at any level can use to create custom applications using basic and expert settings. Visual C++ is a powerful language that is designed to give you deep and detailed control when you build either native Windows (COM+) applications or...

Read more
Please enable JavaScript to view the comments powered by Disqus.

Other Languages

Look for Similar Items by Category

Feedback

Visual Web Developer Express Edition

  • If you need help or have a question, contact us
  • Would you like to update this product info?
  • Is there any feedback you would like to provide? Click here




broken image