Index.cshtml 976 B

123456789101112131415161718192021222324252627
  1. <title>Recherche</title>
  2. @{
  3. ViewBag.Title = "Recherche";
  4. Layout = "~/Views/Shared/_Layout.cshtml";
  5. }
  6. <h1>Recherche</h1>
  7. <div>
  8. @using (Html.BeginForm("Index", "Recherche", FormMethod.Get, new { @class = "form-horizontal col-md-3 filet-right flex" }))
  9. {
  10. @Html.AntiForgeryToken()
  11. <div class="form-group recherche-input">
  12. <div class="input-group">
  13. @Html.TextBox("Recherche", "", new { @class = "form-control auto", data_auto = "Recherche", placeholder = "rechercher un vikings...", @autofocus = true })
  14. <div class="input-group-addon">
  15. <button type="submit" style="background:none; border:none;padding:0;">
  16. <span class="fa fa-search color1" style="vertical-align: middle" aria-hidden="true"></span>
  17. </button>
  18. </div>
  19. </div>
  20. </div>
  21. }
  22. <div class="div-resultat">
  23. @(new HtmlString(ViewData["xmlData"].ToString()))
  24. </div>
  25. </div>