String Parameter in url
- by Ivan90
Hy Guys,
I have to pass in a method action a string parameter, because I want to implement a tags' search in my site with asp.net MVC but everytime in action it is passed a null value.
I post some code!
I try to create a personal route.
routes.MapRoute(
"TagsRoute",
"Tags/PostList/{tag}",
new {tag = "" }
…