Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 30th, 2012  |  syntax: None  |  size: 0.47 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. @{
  2.     Html.ReferenceScript("scripts/libs/landscape.js");
  3. }
  4. <!DOCTYPE html>
  5. <html>
  6.     <head>
  7.         <meta charset="utf-8" />
  8.         @Html.RenderStylesheetLinks()
  9.         @Html.RenderScripts()
  10.         @Html.RenderTemplates()
  11.         @if (Model as IJsonSerializable != null)
  12.         {
  13.         <script type="text/javascript">
  14.             var model = @(((IJsonSerializable)Model).ToJson());
  15.         </script>
  16.         }
  17.     </head>
  18.  
  19.     <body>
  20.         @RenderBody()
  21.     </body>
  22. </html>