I don't know if this defeats the purpose of MVC, but I'd like to have a controller that accepts 2 variables but I don't what to pass them the url. Is there easy way to do that?
public ActionResult Return(string user_id, int item_id)
Right now I'm making links like this
<%: Html.ActionLink("Return", "Return", new {user_id = item.user_id, item_id = item.item_id}) %>
Is there an easy way that will post the data to a controller instead of passing data through the URL