मैं चर वस्तुओं को भेजना चाहता हूं और इकाईमॉडल को 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});
हालाँकि, भेजा जा रहा यूआरएल है
localhost:1304/Administration/blue/en-gb/Entity/CreateNote?modelEntity=Phrase&itemId=44
मैं भेजना चाहता हूँ
localhost:1304/Administration/blue/en-gb/Entity/CreateNote?modelEntity=Phrase&itemId=44
मैं उरल को कैसे रोक सकता हूं। मैं दूसरे चर को सामने लाना चाहता हूं जिसे मैं भेजना चाहता हूं?
&
यह ठीक नहीं है?