Message.cshtml 580 B

123456789101112
  1. @{
  2. ViewBag.Title = "Message";
  3. }
  4. @section scripts{
  5. <script type="text/javascript" src="~/Scripts/bs-message.js"></script>
  6. }
  7. <div style="padding: 66px 0px 0px 0px; text-align: left; font-size: 30px; color: White; font-family: 微软雅黑; font-weight: bold; text-shadow: 1px 1px #000; text-align: center;">
  8. <div id="title">@ViewBag.Message</div>
  9. </div>
  10. <div style="text-align: center; line-height: normal; padding-top: 38px;">
  11. <img src="@Url.Content("~/Content/themes/base/images/btnNext.png")" style="cursor: pointer; border: 0px;" onclick="goHome();" />
  12. </div>