ฉันต้องการส่งตัวแปร 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
ฉันจะป้องกันไม่ให้ Url.Action วางเครื่องหมาย & ไว้หน้าตัวแปรที่สองที่ฉันต้องการส่งได้อย่างไร
&
ไม่ตกลง?