<%@ Register Src="~/controls/textLinkAds.ascx" TagName="textLinkAds" TagPrefix="tla"%> SuperWasp - Productivity tips, reviews, tools, software and gadgets.
SuperWasp

SuperWasp

Productivity tips, reviews, tools, software and gadgets.

 
Microsoft Web Platform Installer

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!

 ms-web-platform-installer

 
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: , , , , , , , , , , , , , , , , , , ,

» Full Article

  Posted by oVan on Wednesday, October 08, 2008 | PermaLink | 0 comments
How-to: Viewing current Route in ASP.NET MVC

ASP.NET-MVC-Active-Route

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.

ASP.NET-MVC-Active-Route-Code

<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>

Labels: , , , ,

» Full Article

  Posted by oVan on Friday, December 21, 2007 | PermaLink | 2 comments
Older articles are stored in the archives (see sidebar).