İtemId ve entityModel değişkenlerini ActionResult CreateNote'a göndermek istiyorum:
public ActionResult CreateNote(
[ModelBinder(typeof(Models.JsonModelBinder))]
NoteModel Model, string cmd, long? itemId, string modelEntity)
bu javascript ile:
Model.meta.PostAction = Url.Action("CreateNote", new { cmd = "Save", itemId = itemId, modelEntity = modelEntity});
Ancak, gönderilen url
localhost:1304/Administration/blue/en-gb/Entity/CreateNote?modelEntity=Phrase&itemId=44
Ben göndermek istiyorum
localhost:1304/Administration/blue/en-gb/Entity/CreateNote?modelEntity=Phrase&itemId=44
Url.Action'ın göndermek istediğim ikinci değişkenin önüne & koymasını nasıl engelleyebilirim?
&
tamam olmadığını düşündüren nedir ?