@using (Html.BeginForm("SaveFormsA", "FormsA", FormMethod.Post, new { @class = "amx-md-form", @data_module_name = "amx-form-validation" }))
{
FF01 : @FormA.InputText
@Html.AramexTextBox("Name", "text", "", "")
FF02 : @FormA.InputNumber
@Html.AramexTextBox("Number", "number", "", "")
FF03 : @FormA.InputEmail
@Html.AramexTextBox("Email", "email", "", "")
FF04 : @FormA.Password
@Html.AramexTextBox("Password", "password", "", "")
FF05 : @FormA.ConfirmPassword
@Html.AramexTextBox("Re-Password", "password", "", "")
FF06 : @FormA.Checkbox
@Html.AramexCheckBox("Chk-1", "Yes", "Chk-2", "No")
var ddList = new List
{ new DropdownListData{Text="Select", Value="0", IsSelected=true},
new DropdownListData{Text="One", Value="1", IsSelected=false},
new DropdownListData{Text="Two", Value="2", IsSelected=false},
new DropdownListData{Text="Three", Value="3", IsSelected=false},
new DropdownListData{Text="Four", Value="4", IsSelected=false}
};
FF07 : @FormA.DropdownSelect
@Html.AramexDropDownList("form-entry-select-name", "form-entry-select-name", ddList)
FF08 : @FormA.AutocompleteCountry
@Html.AramexAutopopulateCountry("Country")
FF09 : @FormA.Commentbox
@Html.AramexTextAria("CommentBox", 8, 40, "")
BTN01
@{string SubmitText = FormA.Submit;
string ResetText = FormA.Reset;
}
@Html.AramexButton("submit", "amx-cp-btn", SubmitText)
BTN02
@Html.AramexButton("reset", "amx-cp-btn amx-mr-secondary", ResetText)
}