«url.action» 태그된 질문

4
Url.Action 매개 변수?
컨트롤러를 나열하면 public ActionResult GetByList(string name, string contact) { var NameCollection = Service.GetByName(name); var ContactCollection = Service.GetByContact(contact); return View(new ListViewModel(NameCollection ,ContactCollection)); } ASPX 페이지에서 호출합니다. <a href="<%:Url.Action("GetByList","Listing" , new {name= "John"} , new {contact="calgary, vancouver"})%>"><span>People</span></a> ASPX 코드에 문제가 있습니다 ... john이라는 이름의 레코드를 가져올 수 있습니다. 그러나 contact="calgary, vancouver"내가을 주면 …

2
Url.Action은 & amp; 내 URL에서 어떻게 해결할 수 있습니까?
변수 itemId 및 entityModel을 ActionResult CreateNote에 보내고 싶습니다. public ActionResult CreateNote( [ModelBinder(typeof(Models.JsonModelBinder))] NoteModel Model, string cmd, long? itemId, string modelEntity) 이 자바 스크립트로 : Model.meta.PostAction = Url.Action("CreateNote", new { cmd = "Save", itemId = itemId, modelEntity = modelEntity}); 그러나 전송되는 URL은 localhost:1304/Administration/blue/en-gb/Entity/CreateNote?modelEntity=Phrase&itemId=44 나는 보내고 싶다 localhost:1304/Administration/blue/en-gb/Entity/CreateNote?modelEntity=Phrase&itemId=44 보내려는 두 번째 변수 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.