- Microsoft Web Platform Installer
-
Posted by oVan on Wednesday, October 08, 2008 | PermaLink | 0 comments
Microsoft has released a new tool aimed at web developers: Microsoft Web Platform Installer. Although it’s still a beta, it’s already a one-stop shop to install all necessary tools, service packs and extensions, including IIS, ASP.NET, SQL Server 2008, Visual Web Developer 2008, all of the current IIS Extensions and more!
Once installed, this tool automatically discovers new additions and updates to the platform, keeping you up to date.Additionally, Microsoft has launched a new website for web professionals (designers and developers): microsoft.com/web
Go to: Microsoft Web Platform Installer site, or download wpilauncher.exe immediately.
Labels: .NET, 2008, asp.net, C#, developer, download, Express, install, installation, installer, Microsoft, Vista, Visual Studio 2005, Visual Studion 2008, vs2005, vs2008, web development, webdev, Windows, Windows Vista
- How-to: Viewing current Route in ASP.NET MVC
-
Posted by oVan on Friday, December 21, 2007 | PermaLink | 1 comments
For those who are playing with the ASP.NET MVC CTP bits, here's an easy way to check the routing info that was used to arrive at your View. You need to enter this into your Site.Master shared view, put it just below the menu-div.
<div class="debug">
<dl>
<dt>Current routing url:</dt>
<dd><%= ViewContext.RouteData.Route.Url.ToString()%>
</dd>
<dt> Current routing values:</dt>
<dd>
<ol><%= ViewContext.RouteData.Values.ToFormattedList("<li>{0}</li>") %></ol>
</dd>
</dl>
</div>
