I have a javascript method onRowSelected
wchich gets rowid. How to pass the rowid in certain action of a controller with HttpGet
?
function onRowSelected(rowid, status) {
alert('This row has id: ' + rowid);
//url: @Action.Url("Action","Controller")
//post:"GET"
// Something like this?
}
If your controller action expects an id query string parameter:
or if you want to pass it as part of the route you could use replace:
yet another possibility if you are going to send an AJAX request is to pass it as part of the POST body:
or as a query string parameter if you are using GET:
All those suppose that your controller action takes an id parameter of course:
So as you can see many ways to achieve the same goal.