In you Global.asax.cs
file, you will have the following route mapped by default:
routes.mapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = null });
That means that an url like http://localhost:2345/Bank/EmployeeDetails/3d34xyz
will go to the Bank
controller, the EmployeeDetails
action and pass the value 3d34xyz
into a parameter named id
. It is perfectly allright to pass a string, but in order to make it work you have two options:
1) Rename the variable to id
in your action method.
public ActionResult EmployeeDetails(string id) { ... }
2) Add another route that matches whatever name you want for your string. Make sure to make it more specific than the default route, and to place it before the default route in the Global.asax.cs
file.
routes.mapRoute(
"BankEmployeeDetails"
"Bank/EmployeeDetails/{myString}"
new { controller = "Bank", action = "EmployeeDetails", myString = null });
This will pass a default value of null
to myString
if no value is passed in the url, but with the url you specified you will pass the value 3d34xyz
.