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 कोड में एक समस्या है …

2
Url.Action एक & amp डालता है; मेरे url में, मैं इसे कैसे हल कर सकता हूं?
मैं चर वस्तुओं को भेजना चाहता हूं और इकाईमॉडल को 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}); हालाँकि, भेजा जा रहा …
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.