tags:

views:

98

answers:

0

I have a page where I am displaying some urls in HTML ActionLink

here is the code...

Sl.No. Office Name

the code is generating link like

http://localhost:3819/Description/Description/Clerical_Glendale

I want to make this link look like ...

http: // localhost:3819/Clerical_Glendale

currently my global.asax route mapping is like this...

routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Job", action = "JobIndex", id = "" } // Parameter defaults );

what changes do i need to make so that I can get the URL http: // localhost:3819/Clerical_Glendale

Reply earliest.