Index.cshtml 622 B

12345678910111213141516171819202122232425262728
  1. @{
  2. ViewBag.Title = "加密";
  3. Layout = null;
  4. }
  5. <h2>Index</h2>
  6. @using (Html.BeginForm(new { @encry = true }))
  7. {
  8. <form class="form-horizontal well">
  9. <div class="form-actions">
  10. <button type="submit" class="btn btn-primary">加密</button>
  11. </div>
  12. </form>
  13. }
  14. @using (Html.BeginForm(new { @encry =false }))
  15. {
  16. <form class="form-horizontal well">
  17. <div class="form-actions">
  18. <button type="submit" class="btn btn-primary">解密</button>
  19. <a class="btn pull-right" onclick="window.close() ">关闭</a>
  20. </div>
  21. </form>
  22. }