Problem passing parameters in asp.net mvc2
Posted
by Jhorra
on Stack Overflow
See other posts from Stack Overflow
or by Jhorra
Published on 2010-04-02T05:49:35Z
Indexed on
2010/04/02
5:53 UTC
Read the original article
Hit count: 321
I have the following controller:
public ActionResult Search(string Name, int? Friend, int? Page)
It works if I use this url localhost/users/search/name but these don't localhost/users/search/name/1 and localhost/users/search/name/1/1
© Stack Overflow or respective owner