I want to add html in parameters
Example :
www.mystorenowopen.com/store.html/12/computer-it
i wrote
routes.MapRoute(
"store",
"store.html/{cid}/{title}",
new { controller = "Home", action = "store" }
);
Its working fine but I want to
www.mystorenowopen.com/store/12/computer-it.html
how to do it
Pls help me