Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Member
378 Points
81 Posts
Feb 21, 2012 09:59 PM|LINK
Your action must have a parameter named, SelectedRow, int or string type. MVC will parse the query string following your action parameters.
public ActionResult Action(int SelectedRow)
In your url : http://localhost:50410/Action?SelectedRow=4
Hope this help.
giop
Member
378 Points
81 Posts
Re: Obtain data from the url
Feb 21, 2012 09:59 PM|LINK
Your action must have a parameter named, SelectedRow, int or string type. MVC will parse the query string following your action parameters.
In your url : http://localhost:50410/Action?SelectedRow=4
Hope this help.
Please Mark as Answer if it helps :)