Advertisement
Guest User

Untitled

a guest
Oct 14th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 2.64 KB | None | 0 0
  1. @model Argoyle_Software.Models.ContactModel
  2.            
  3. @{
  4.     ViewBag.Title = "Argoyle - Software for the modern world";
  5. }
  6.  
  7. <div id="mainText">
  8. <h1>Welcome</h1>
  9. <p>
  10.  
  11. Argoyle is a start up founded by Roger H. Newell of Canada, the company aspires to develop commercial software to satisfy the demand of modern business's and consumers.
  12. Our belief is that software will continue to be at the for-front of innovation in technology, and provide a lucrative ROI for companies with the expertise and passion to drive forward.
  13.  
  14. </p>
  15.  
  16. <p>
  17.  
  18. This website currently serves as a digital landmark for Argoyle and will be updated when we have product to announce. Argoyle is currently working on games and web applications for entry into the
  19. casual gaming and online social markets. Our games will be distributed across Windows XP, Windows 7, Xbox 360 and Windows Phone 7.5. Web applications will be accessible from  Chrome, Internet Explorer 9 and above, and Firefox 4.0 and above.
  20.  
  21. </p>
  22. <div id="news">
  23. <br />
  24. <strong>News items</strong>
  25. <ul>
  26. <li>April-25-2011: Finalized decision to build and deploy on Microsoft Solutions</li>
  27. <li>June-23-2011: Server Up.</li>
  28. <li>July-25-2011: Concept for game finalized.</li>
  29. <li>August-16-2011: Domain name purchased.</li>
  30. </ul>
  31.  
  32. </div>
  33. </div>
  34.  
  35.  
  36. <div id="contactBox">
  37.  
  38.  
  39.     <div>
  40.  
  41.        @using (Html.BeginForm()) {
  42.     @Html.ValidationSummary(true)
  43.     <fieldset>
  44.         <legend>Contact</legend>
  45.  
  46.         <div class="editor-label">
  47.             @Html.LabelFor(model => model.firstName)
  48.         </div>
  49.         <div class="editor-field">
  50.             @Html.EditorFor(model => model.firstName)
  51.             @Html.ValidationMessageFor(model => model.firstName)
  52.         </div>
  53.  
  54.         <div class="editor-label">
  55.             @Html.LabelFor(model => model.lastName)
  56.         </div>
  57.         <div class="editor-field">
  58.             @Html.EditorFor(model => model.lastName)
  59.             @Html.ValidationMessageFor(model => model.lastName)
  60.         </div>
  61.  
  62.         <div class="editor-label">
  63.             @Html.LabelFor(model => model.email)
  64.         </div>
  65.         <div class="editor-field">
  66.             @Html.EditorFor(model => model.email)
  67.             @Html.ValidationMessageFor(model => model.email)
  68.         </div>
  69.          <div class="editor-label">
  70.             @Html.LabelFor(model => model.message)
  71.         </div>
  72.          <div class="editor-field">
  73.             @Html.TextAreaFor(model => model.message)
  74.             @Html.ValidationMessageFor(model => model.message)
  75.         </div>
  76.  
  77.         <p>
  78.             <input type="submit" value="Create" />
  79.         </p>
  80.     </fieldset>
  81. }
  82.  
  83.     </div>
  84.  
  85.  
  86. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement