ASP.NET Extensionless URL ReWriting in IIS 7

 

The one that I’ve used and highly recommend is UrlRewriting.net. (There is another one - also free - called UrlRewriter.net but one that I’ve had not too great experiences with.)

To get UrlRewriting.net to work, simply Add Reference the provided DLL into the ASP.NET Visual Studion Project.  Next edit Web.config and make changes on the

<configSections>, <system.web>, <system.webServer>, finally create a new section, <urlrewritingnet> in which you’ll add the “rules” for the rewriting

image

image

image

image

Also take a look at the article by ScottGu: http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx

55 Free High Quality Icon Sets

 image

In the overview below we present 55 more excellent, free and professional icons for desktop and web design

55 Free High Quality Icon Sets | Graphics | Smashing Magazine

ASP.NET Design - Five Common ASP.NET SEO Mistakes

  1. Overuse of Button Controls

  2. Duplicate Page Titles

  3. Duplicate Meta Descriptions

  4. State-Dependent Pages

  5. Duplicate Content When Rewriting URLs With ASP.NET

For more details, look at ASP.NET Dexign - Five Common ASP.NET SEO Mistakes

Cloud Control for ASP.NET

 image

  • The weight factor is calculated according to the following formula:
    factor = (weight - mean)/(stddev)

    CodeProject: Cloud Control for ASP.NET. Free source code and programming help

  • OpenID ASP.NET Control

    Adding Gravatar in ASP.NET

     

    image

    Part 1: Adding Gravatars to your ASP.NET site in a few lines of code - It’s easy to add avatars to your site

    Part 2: Avatars? Isn’t that some kind of D&D comic book stuff? - Avatars can help make your community website feel more like a community and less like a website

    Part 3: Gravatar 201: Advanced Gravatars in ASP.NET

    Also, identicon - the 9-block IP Identification. Identicon.NET in codeplex.

    Also, Gravatars is used in open source ASP.NET projects: dasBlog (weblog system), SubText (weblog system), and DotNetKicks.

    MOSSO Cloud Computing for .NET, IIS7

    image 

    Shared Hosting, VPS, Dedicated Server

    MOSSO :: The Hosting Cloud - Home

    The ASP.NET MVC Information Portal

     

    The ASP.NET MVC (Model View Controller) framework is one of the most talked about and long awaited additions to the Microsoft world of web development. Find and follow all the news, announcements, blog posts, tutorials, tips, and other resources on AspDotNetMVC.com.

    The ASP.NET MVC Information Portal

    Posted in MVC. No Comments »

    How do I Recompile the MySQL Library to Run Under the Medium Trust Environment in ASP.NET?

    Update: You no longer need that if you use the MySQL Connector/Net 5.2 or later.

    1. Download the source code for the MySQL Connector/Net from www.mysql.com.
    2. Extract the contents of the zip file to a local directory.
    3. Open mysql.csproj project file in Visual Studio.
    4. Open the AssemblyInfo.cs file, and add the following code, in the using block, at the top of the file (if it is not already there):using System.Security;
    5. Add the following code to the assembly section of the file:[assembly: AllowPartiallyTrustedCallers]
    6. Recompile the dll.

    You may now reference this dll from other projects. When you decide to publish your project to your hosting server, you need to upload this modified version of the dll to your bin directory.

    Via How do I Recompile the MySQL Library to Run Under the Medium Trust Environment? - Help Center—Knowledge Base and FAQ

    MySQL ASP.NET Tutorial

     

    A Step-by-Step Guide To Using MySQL with ASP.NET

     

    MySQL 5 C# sample code using ObjectDataSources