how can we redirect from one view to another using window.location.href
with parameters?
code in javascript
window.location.href = "your/url?10&12";
and my method
public ActionResult url(int val1, int val2)
{
}
both val1 and val2 is 0
what can we do here to get the value?