Added RedirectUsingNamedRoute
[castle.git] / Samples / MonoRail / MoviesDemo / Views / Layouts / HtmlPage.vm
blob3f126c1874f8e444bb021f19811e65552110e31d
1 <html>
2 <head>
3     <title>$commonText.htmlTitle</title>
4     <script language="javascript">
5     function setCulture( localeId ) {
6         var url = '$siteRoot/Preferences/Locale.castle?localeId=' + localeId + '&refUrl=' + encodeURIComponent(location.href);
7         location.href = url;
8     }
9     </script>
10 </head>
11 <body>
12     <h1>$commonText.header</h1>
13     <table cellpadding="15" bordercolor="silver" border="1">
14     <tr><td>
15         $childContent
16     </td></tr>
17     </table>
18     
19     <br /><br />
20     <a href="javascript:setCulture('pt')">Portuguese</a> | <a href="javascript:setCulture('en')">English</a>
21 </body>
22 </html>