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

Untitled

By: a guest on Aug 5th, 2012  |  syntax: None  |  size: 0.46 KB  |  hits: 11  |  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. Deploy WebSharper 2.4 sitelet on IIS7.5
  2. type Action =
  3.         | Home
  4.         | Contact
  5.         | Protected
  6.         | Login of option<Action>
  7.         | Logout
  8.         | Echo of string
  9.        
  10. module Pages =
  11.  
  12.     /// The home page.
  13.     let HomePage : Content<Action> =
  14.         Skin.WithTemplate "Home" <| fun ctx ->
  15.             [
  16.                 H1 [Text "Welcome to our site!"]
  17.                 "Let us know how we can contact you" => ctx.Link Action.Contact
  18.              ]