0% found this document useful (0 votes)
6 views

Index Cs.HTML

Uploaded by

Irfan Shaik
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

Index Cs.HTML

Uploaded by

Irfan Shaik
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

Index Cs.

HTML

@model Sample_CRUD.Models.Table
<h2>Index</h2>

<!DOCTYPE html>
<html>

<body>
<div>

<table>
@using(Html.BeginForm("Index", "Home", FormMethod.Post))
{

<tr>

<td colspan="0" >


ID :
</td>
<td colspan="1">
@Html.TextBoxFor(m => m.Id)
</td>

</tr>

<tr>
<td colspan="0">
Name :
</td>

<td colspan="1">
@Html.TextBoxFor(n => n.name)
</td>
</tr>

<tr>
<td colspan="0">
Age :
</td>

<td colspan="1">
@Html.TextBoxFor(m => m.age)
</td>
</tr>

<tr>
<td colspan="0">

<input type="submit" id=" sb1" style="text-align:center"


placeholder="Submit" value="register" />
</td>

</tr>

}
</table>
</div>

</body>

</html>

You might also like