tags:

views:

26

answers:

1

Hi All,

Is there a way to perform a GET and pass parameters using Ajax.ActionLink

<%= Ajax.ActionLink("12", "ActionMethod", new { id = 1} ...

Currently, the line above performs a POST.

Thanks, rod.

+1  A: 
<%= Ajax.ActionLink("12", "ActionMethod", new AjaxOptions { HttpMethod = "GET" })%>
runxc1 Bret Ferrier