Guest User

Untitled

a guest
Jan 22nd, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <tr>
  2. <td>肉芽組織</td>
  3. @for (int i = 0; i < Model.EsGranOptions.Count; i++)
  4. {
  5. NCODE option = Model.EsGranOptions[i];
  6. string radioId = "OpdEval.EsGran_" + option.NC_CODE;
  7. string radioName = "OpdEval.EsGran";
  8. string radioValue = option.NC_CODE;
  9. <td>
  10. <label>
  11. <input id="@radioId" name="@radioName" type="radio" value="@radioValue">
  12. @option.NC_NAME
  13. </label>
  14. </td>
  15. }
  16. </tr>
  17.  
  18. @using (Html.BeginForm("AddOrUpdate", "OpdEval", new { area = "PDNurse" }, FormMethod.Post, new { @class = "form-inline", id = "HdRecordForm" })){}
Add Comment
Please, Sign In to add comment