Controller:
public ActionResult Tool(string id)
{
// Code goes here . .
}
View:
<a href="/Home/@item.Type/@Url.Encode(item.Title)" id="toolTitleLink">@item.Title</a>
From the code above @item.Title
can have special characters like '/' sample link is http://localhost:39727/Home/Tool/C+Compiler+For+The+Pic10%2f12%2f16+Mcus
when I try to navigate to that link Tool Controller
was not called. I used @Url.Encode
but still Controller
was not called.