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?
feedback
|
|
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 | |||||||
|
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/ | |||
|
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
} | ||||
|
feedback
|