0
[挿入]ボタンをクリックしている間にすべてのフィールドが満たされているかどうかを確認する必要があります。 これが私の見解です:.net MVCでの検証
<body>
<form name="form1">
<h2>MEDICATION</h2>
<div class="med">
<pre>
<label>Patient code</label> <input type="text" id="pat" name="ptcode" size="25" value="" /> <label>ICD10</label> <input style="width:85px;height:30px;" type="text" name="icd10" value=""> <button style="height:30px;width:59px;" name="search" onclick="openicd()";>search</button><br />
<label>Medication</label> @Html.DropDownListFor(Model => Model.medication, Model.medication,"Select Medication", new { style = "width:200px; height :30px" }) <button style="height:30px;"onclick="openmedication()";>search</button> Prescription Date <input type="date" class="sizetestdate" name="testdate" style="width:140px;height:30px;" value="">
<label>Strength</label> @Html.DropDownListFor(Model => Model.strength, Model.strength, "Select Strength", new { style = "width:200px; height :30px" }) Start Date <input type="date" class="sizetestdate" name="testdate" style="width:140px;height:30px;" value=""> End Date <input type="date" class="sizetestdate" name="testdate" style="width:140px;height:30px;" value=""><br />
<label>Form</label> @Html.DropDownListFor(Model => Model.form, Model.form, "Select form", new { style = "width:200px; height :30px" }) Renewal Date <input type="date" class="sizetestdate" name="testdate" style="width:140px;height:30px;" value=""><label> Days Supply</label> <input type="text" style="width:85px;height:30px;" name="supply" value=""> <br />
<label>Route</label> @Html.DropDownListFor(Model => Model.route, Model.route, "Select route", new { style = "width:200px; height :30px" }) <label>Pharmacy</label> @Html.DropDownListFor(Model => Model.pharmacy, Model.pharmacy, "Select Pharmacy", new { style = "width:200px; height :30px" })<br />
<label>Dose</label> @Html.DropDownListFor(Model => Model.dosage, Model.dosage, "Select Dose", new { style = "width:200px; height :30px" })
</pre>
</div>
</form>
<hr />
<div class="wrapper">
<button class="button" style="height:30px;" id="a" >Insert</button> <button class="button" style="height:30px;" id="b">Update</button> <button class="button" style="height:30px;" id="c">Delete</button>
</div></body>
</html>
のためにあなたのモデルを使用することができますここに答えの本質的な部分を含め、参照のためのリンクを提供するence。リンクされたページが変更された場合、リンクのみの回答は無効になります。 – Dwhitz
@Dwhitz Ok thx、編集済み – wtMaxim