If you're a web developer, Mads Kristensen and Jorge Gabuardi are about to be your new best friends. In this episode of Web Camps TV, Mads and Jorge introduce you to all the new features available in Visual Studio 11 for web developers. From the improved CSS editor to serious JavaScript improvements, a new set of color tools, and the brand new Page Inspector, Visual Studio 11 is loaded with new ways to enhance your web development experience.
Monday, March 12, 2012
The new features available in Visual Studio 11 for web developers
If you're a web developer, Mads Kristensen and Jorge Gabuardi are about to be your new best friends. In this episode of Web Camps TV, Mads and Jorge introduce you to all the new features available in Visual Studio 11 for web developers. From the improved CSS editor to serious JavaScript improvements, a new set of color tools, and the brand new Page Inspector, Visual Studio 11 is loaded with new ways to enhance your web development experience.
Friday, February 3, 2012
Enable IIS 8 on Windows 8 Developer Preview
- Click Control Panel in Windows 8 Metro UI screen.

- Select More Settings.

- Click Programs

- Click Turn Windows features on or off.

- Check Internet Information Services, and click OK.

- After a while, Windows 8 will setup your server. Once complete, open a browser, and switch to http://localhost/. Your server is up and running.

- Typically, your IIS document root is located at C:\inetpub\wwwroot

- If you set permission of your firewall, it can be accessed from other computer. It's screen shoot captured on an Android tablet to access Windows 8's IIS web page.

Tuesday, January 10, 2012
Web Application Projects versus Web Site Projects
The following table summarizes the main differences:
Area | Web application projects | Web site projects |
---|---|---|
Project file structure | A Visual Studio project file (.csproj or .vbproj) stores information about the project, such as the list of files that are included in the project, and any project-to-project references. | There is no project file (.csproj or .vbproj). All the files in a folder structure are automatically included in the site. |
Compilation |
|
|
Namespaces | Explicit namespaces are added to pages, controls, and classes by default. | Explicit namespaces are not added to pages, controls, and classes by default, but you can add them manually. |
Deployment |
|
|
Know more details:
- http://msdn.microsoft.com/en-us/library/dd547590.aspx