Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Samples / MonoRail / GettingStartedSampleVS2005 / GettingStartedSample / Views / contact / contactform.vm
blobdccb48b3a468494369cd9ea8469541ac794b130e
1 \r
2 <h2>Contact us!</h2>\r
3 \r
4 <p>\r
5 We are interested in hearing from you.\r
6 </p>\r
7 \r
8 <form action="SendContactMessage.rails" method="post">\r
9 \r
10 <p>\r
11 From: $FormHelper.TextField("contact.from")\r
12 </p>\r
14 <p>\r
15 Area: $FormHelper.TextField("contact.area") (Sales, Support)\r
16 </p>\r
18 <p>\r
19 Subject: $FormHelper.TextField("contact.subject", "%{size='30'}")\r
20 </p>\r
22 <p>\r
23 Message: <br/> \r
24 $FormHelper.TextArea("contact.message", "%{cols='35', rows='6'}")\r
25 </p>\r
27 <hr />\r
29 <p>\r
30 <input type="submit" value="Send the message" />\r
31 </p>\r
33 </form>