Blame view

Views/StateCommon/Edit.cshtml 1020 Bytes
89227bfe   Administrator   add crud for all ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  @model Maps.Entities.StateCommon
  
  @{
      Layout = null;
  }
  
  <!DOCTYPE html>
  
  <html>
  <head>
      <meta name="viewport" content="width=device-width" />
      <title>Edit</title>
  </head>
  <body>
  
  <form asp-action="Edit">
      <div class="form-horizontal">
          <h4>StateCommon</h4>
          <hr />
          <div asp-validation-summary="ModelOnly" class="text-danger"></div>
      <input type="hidden" asp-for="StateCommonId" />
          <div class="form-group">
              <label asp-for="Value" class="col-md-2 control-label"></label>
              <div class="col-md-10">
                  <input asp-for="Value" class="form-control" />
                  <span asp-validation-for="Value" class="text-danger" />
              </div>
          </div>
          <div class="form-group">
              <div class="col-md-offset-2 col-md-10">
                  <input type="submit" value="Save" class="btn btn-default" />
              </div>
          </div>
      </div>
  </form>
  
  <div>
      <a asp-action="Index">Back to List</a>
  </div>
  
  </body>
  </html>