Computer Science, asked by Smeenu8994, 1 year ago

How to pass multiple parameter in url.action in mvc?

Answers

Answered by aravinthveer006
0

function SelectVoucher(Vid, vDeptCode) {

   var voucherID = Vid;

   var vDeptCode = vDeptCode;

   window.location.href = "@Url.Action("Edit_Voucher", "Voucher", new { id = voucherID }) ";

}


Similar questions