Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Samples / MonoRail / SampleSite / Views / AjaxArea / linktoremote / index.vm
blob79df9eb98585dad035e5f1c58b57747a231a98cd
1 <div align="center">\r
2   <h2>Ajax Support - LinkToRemote</h2>\r
3 </div>\r
4 \r
5 <div class="container">\r
6   \r
7   The LinkToRemote helper creates a anchor tag that invokes \r
8   a remote method (controller's action) and inserts the resulting \r
9   html on the specified element (update argument)\r
10   \r
11 </div>\r
13 <h3>Overloads:</h3>\r
15 <div class="container">\r
17 <ul>\r
18   <li><code>public String LinkToRemote(String name, String url, IDictionary options)</code></li>\r
19   <li><code>public String LinkToRemote(String name, String url, String update)</code></li>\r
20   <li><code>public String LinkToRemote(String name, String url, String update, String with)</code></li>\r
21   <li><code>public String LinkToRemote(String name, String url, String update, bool form)</code></li>\r
22 </ul>\r
24 </div>\r
26 <h3>Examples:</h3>\r
28 <div class="container">\r
30 <a href="${siteRoot}/code/showCode.castle?file=Views/AjaxArea/linktoremote/index.vm">Check this view source code</a>.\r
32 <p>\r
33   <div id="results1">\r
34   </div>\r
35   $AjaxHelperOld.LinkToRemote("Show the time on the server", "showtime.castle", "results1")\r
36 </p>\r
38 <p>\r
39   <div id="results2">\r
40   </div>\r
41   <input type="text" name="value2" id="value2" value="2"/>\r
42   $AjaxHelperOld.LinkToRemote("Calculate Power", "CalcPower.castle", "results2", "'value='+$('value2').value")\r
43 </p>\r
45 </div>\r