I want t use short and beaty links for referal registration in my asp.net application. Something like http://MySite.ru/xbsdakj. How can i implement this stuff?

link|improve this question

68% accept rate
What's referral registration - part of ASP.NET's membership provider stuff (i.e. do you want help digging into that) or just your own code? Do you have a domain and an URL shortener service which allows custom domains (e.g. bit.ly pro - I'm sure there's plenty of others out there too)? – Rup Jun 10 '11 at 8:44
feedback

3 Answers

If you're not using MVC .NET and use Webforms, you're going to have to implement URL-Rewriting. Please refer to http://msdn.microsoft.com/en-us/library/ms972974.aspx

link|improve this answer
Not exactly a complete truth - routing is available in 3.5+ – Mike Miller Jun 10 '11 at 8:52
indeed, you should post that as an answer. – Tsar Jun 10 '11 at 9:01
Done - but haven't tested it sorry. – Mike Miller Jun 10 '11 at 13:34
feedback

bit.ly can offer this for you in easy steps http://gigaom.com/collaboration/bit-ly-pro-create-short-urls-with-your-own-domain/

link|improve this answer
feedback

Which version of ASP.net are you targeting?

Version 3.5 and above you can utilise Routing (even with webforms) below that you can't :)

Assuming that you can use routes, you can do the following in the global asax...

protected void Application_Start(object sender, EventArgs e) { RegisterRoutes(RouteTable.Routes); }

public static void RegisterRoutes(RouteCollection routes) { routes.Add(new Route("/{hash}",new HashRouteHandler())); }

where HashRouteHandler is like the handler described in the answer here

using System.Web.Compilation;
using System.Web.UI;
using System.Web;
using System.Web.Routing;

public class HashRouteHandler: IRouteHandler
{
    public CustomRouteHandler(string virtualPath)
    {
        this.VirtualPath = virtualPath;
    }

    public string VirtualPath { get; private set; }

    public IHttpHandler GetHttpHandler(RequestContext
          requestContext)
    {
        // Lookup URL from hash, e.g. mysite.ru/categories/signup?someinfo=jimmy%20dean
        string querystring = LookupBasedOnHash(requestContext.RouteData.Values["hash"]);
        HttpContext.Current.RewritePath(
          string.Concat(
          VirtualPath,
          queryString)); 

        var page = BuildManager.CreateInstanceFromVirtualPath
             (querystring , typeof(Page)) as IHttpHandler;
        return page;
    }

}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.