4
Url.Action parametri?
Nell'elenco del controller che ho, public ActionResult GetByList(string name, string contact) { var NameCollection = Service.GetByName(name); var ContactCollection = Service.GetByContact(contact); return View(new ListViewModel(NameCollection ,ContactCollection)); } Nella pagina ASPX chiamo, <a href="<%:Url.Action("GetByList","Listing" , new {name= "John"} , new {contact="calgary, vancouver"})%>"><span>People</span></a> Ho un problema nel codice ASPX ... posso estrarre i record …