I am having a default page Controller like
I have a div which has nested drop-down's. on my last drop-down using jquery Ajax i call a action method GetTime( string temp 1, string temp 2).But my url is still the same as above and it never changes
I need the url to change to
I added a new route map in global.ascx
routes.MapRoute(
"Test",
"{controller}.mvc/{action}/{id}",
new {controller ="Index", action="GetTime",id=" "});
when i use firebug to debug the urls are perfectly fine and i get the desired results but i need the urls to change for the case of bookmarking.
Thanks, Pawan