Sachin,
If you are using jquery (which you did not mention, but I will show that it is pretty standard with mvc), you should do the following:
$('#buttonId').click(function(){
document.location = '@Url.Action("MyAction","MyController")';
});
Of course, you probably want to use ajax, but this is a basic example.
source
share