Tôi muốn gửi các biến itemId và entityModel đến ActionResult CreateNote:
public ActionResult CreateNote(
[ModelBinder(typeof(Models.JsonModelBinder))]
NoteModel Model, string cmd, long? itemId, string modelEntity)
với javascript này:
Model.meta.PostAction = Url.Action("CreateNote", new { cmd = "Save", itemId = itemId, modelEntity = modelEntity});
Tuy nhiên, url được gửi là
localhost:1304/Administration/blue/en-gb/Entity/CreateNote?modelEntity=Phrase&itemId=44
tôi muốn gửi
localhost:1304/Administration/blue/en-gb/Entity/CreateNote?modelEntity=Phrase&itemId=44
Làm cách nào để ngăn chặn Url.Action đặt & ở trước biến thứ hai mà tôi muốn gửi?
&
là không ổn?