Initial commit
This commit is contained in:
35
App/Views/Form/Index.cshtml
Normal file
35
App/Views/Form/Index.cshtml
Normal file
@@ -0,0 +1,35 @@
|
||||
@using Syncfusion.EJ2
|
||||
@{
|
||||
ViewBag.Title = "Test";
|
||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||
}
|
||||
<h2>Test</h2>
|
||||
<br />
|
||||
|
||||
<div class="control-section">
|
||||
<form method="post" enctype="multipart/form-data" asp-controller="Form" asp-action="Save">
|
||||
<div class="control_wrapper accordion-control-section">
|
||||
<ejs-textbox id="firstname" placeholder="First Name"></ejs-textbox>
|
||||
<ejs-textbox id="lastname" placeholder="Last Name"></ejs-textbox>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>First Name: </td>
|
||||
<td><input type="text" id="txtFirstName" name="FirstName" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Last Name: </td>
|
||||
<td><input type="text" id="txtLastName" name="LastName" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td><input type="submit" value="Submit" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
<ejs-button id="element" content="Button" content="Submit"></ejs-button>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user