Index.cshtml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. @{
  2. ViewData["Title"] = "Home Page";
  3. }
  4. <script type="text/javascript">
  5. window.location.href = "./eap-web/";
  6. </script>
  7. <div id="myCarousel" class="carousel slide" data-ride="carousel" data-interval="6000">
  8. <ol class="carousel-indicators">
  9. <li data-target="#myCarousel" data-slide-to="0" class="active"></li>
  10. <li data-target="#myCarousel" data-slide-to="1"></li>
  11. <li data-target="#myCarousel" data-slide-to="2"></li>
  12. </ol>
  13. <div class="carousel-inner" role="listbox">
  14. <div class="item active">
  15. <img src="~/images/banner1.svg" alt="ASP.NET" class="img-responsive" />
  16. <div class="carousel-caption" role="option">
  17. <p>
  18. Learn how to build ASP.NET apps that can run anywhere.
  19. <a class="btn btn-default" href="https://go.microsoft.com/fwlink/?LinkID=525028&clcid=0x409">
  20. Learn More
  21. </a>
  22. </p>
  23. </div>
  24. </div>
  25. <div class="item">
  26. <img src="~/images/banner2.svg" alt="Visual Studio" class="img-responsive" />
  27. <div class="carousel-caption" role="option">
  28. <p>
  29. There are powerful new features in Visual Studio for building modern web apps.
  30. <a class="btn btn-default" href="https://go.microsoft.com/fwlink/?LinkID=525030&clcid=0x409">
  31. Learn More
  32. </a>
  33. </p>
  34. </div>
  35. </div>
  36. <div class="item">
  37. <img src="~/images/banner3.svg" alt="Microsoft Azure" class="img-responsive" />
  38. <div class="carousel-caption" role="option">
  39. <p>
  40. Learn how Microsoft's Azure cloud platform allows you to build, deploy, and scale web apps.
  41. <a class="btn btn-default" href="https://go.microsoft.com/fwlink/?LinkID=525027&clcid=0x409">
  42. Learn More
  43. </a>
  44. </p>
  45. </div>
  46. </div>
  47. </div>
  48. <a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
  49. <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
  50. <span class="sr-only">Previous</span>
  51. </a>
  52. <a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
  53. <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
  54. <span class="sr-only">Next</span>
  55. </a>
  56. </div>
  57. <div class="row">
  58. <div class="col-md-3">
  59. <h2>Application uses</h2>
  60. <ul>
  61. <li>Sample pages using ASP.NET Core MVC</li>
  62. <li>Theming using <a href="https://go.microsoft.com/fwlink/?LinkID=398939">Bootstrap</a></li>
  63. </ul>
  64. </div>
  65. <div class="col-md-3">
  66. <h2>How to</h2>
  67. <ul>
  68. <li><a href="https://go.microsoft.com/fwlink/?LinkID=398600">Add a Controller and View</a></li>
  69. <li><a href="https://go.microsoft.com/fwlink/?LinkId=699315">Manage User Secrets using Secret Manager.</a></li>
  70. <li><a href="https://go.microsoft.com/fwlink/?LinkId=699316">Use logging to log a message.</a></li>
  71. <li><a href="https://go.microsoft.com/fwlink/?LinkId=699317">Add packages using NuGet.</a></li>
  72. <li><a href="https://go.microsoft.com/fwlink/?LinkId=699319">Target development, staging or production environment.</a></li>
  73. </ul>
  74. </div>
  75. <div class="col-md-3">
  76. <h2>Overview</h2>
  77. <ul>
  78. <li><a href="https://go.microsoft.com/fwlink/?LinkId=518008">Conceptual overview of what is ASP.NET Core</a></li>
  79. <li><a href="https://go.microsoft.com/fwlink/?LinkId=699320">Fundamentals of ASP.NET Core such as Startup and middleware.</a></li>
  80. <li><a href="https://go.microsoft.com/fwlink/?LinkId=398602">Working with Data</a></li>
  81. <li><a href="https://go.microsoft.com/fwlink/?LinkId=398603">Security</a></li>
  82. <li><a href="https://go.microsoft.com/fwlink/?LinkID=699321">Client side development</a></li>
  83. <li><a href="https://go.microsoft.com/fwlink/?LinkID=699322">Develop on different platforms</a></li>
  84. <li><a href="https://go.microsoft.com/fwlink/?LinkID=699323">Read more on the documentation site</a></li>
  85. </ul>
  86. </div>
  87. <div class="col-md-3">
  88. <h2>Run &amp; Deploy</h2>
  89. <ul>
  90. <li><a href="https://go.microsoft.com/fwlink/?LinkID=517851">Run your app</a></li>
  91. <li><a href="https://go.microsoft.com/fwlink/?LinkID=517853">Run tools such as EF migrations and more</a></li>
  92. <li><a href="https://go.microsoft.com/fwlink/?LinkID=398609">Publish to Microsoft Azure Web Apps</a></li>
  93. </ul>
  94. </div>
  95. </div>