In my jquery code, I can open a new action using the following code:
window.open("ControllerAction");
However, this opens the controller action in a different tab. How can I make this open in the same window without creating a separate tab.
This is basically a workaround I have found to doing page refresh in asp.net mvc.
window.location.href = "/{controller}/{action}";