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
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- [WinError 145] The directory is not empty: 'FolderPath' - Python
Related Article