You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
35 lines
1.0 KiB
@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> |