summaryrefslogtreecommitdiff
path: root/tests/crud1.html
blob: b1f34b54547354229a9c8b7caaf0abecc4d6a524 (plain)
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
<!DOCTYPE html><html><head></head><body>
<p>Inserted with ID 1.</p>

<table border="1">
<tr>
<th>ID</th>
<th>A</th>
<th>B</th>
<th>C</th>
<th>D</th>
</tr>

<tr>
<td>1</td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>True</td>
<td>
<a href="/Demo/Crud1/upd/1">[Update]</a>
<a href="/Demo/Crud1/confirm/1">[Delete]</a>
</td>
</tr>

</table>
<br /><hr /><br />
<form method="post" action="/Demo/Crud1/create">
<li> A: <input type="text" name="A" /></li>
<li> B: <input type="text" name="B" /></li>
<li> C: <input type="text" name="C" /></li>
<li> D: <input type="checkbox" name="D" /></li>
<input type="submit" />
</form>

</body></html>