In this Article, Describe how to Remove UrlParameter using MVC Routing in asp.net mvc. If you new to Routing in mvc please refer to this link for more details http://www.infinetsoft.com/Post/What-is-Routing-in-asp-net-mvc/106
Here I explain with small demonstration to achieve this. I have passed two parameter with name of value and id in my url. I want to remove last two passing parameter name value and id.
For example let you assume this is my url link
http://localhost:12345/User?value=98998?id=2
Step -I
=========
//Modify your Routeconfig.cs like this
routes.MapRoute(
"User",
"User/{value}/{id}",
new { controller = "User",action = "Index", value= UrlParameter.Optional, id =UrlParameter.Optional }
);
Step-II
========
//User Controller
public ActionResult Index(string value,int id)
{
// write Your logic here
return view();
}
Step-III
========
//Create an Index view for UserController
@Html.ActionLink("LinkName", "Index","User", new {value = "98998", id = "2"},null)
Output
http://localhost:12345/User/98998/2
Likewise we can remove multiple parameter name from the url.
Post your comments / questions
Recent Article
- How to create custom 404 error page in Django?
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
Related Article