I want to show Components in a tabs , so first of all create few components. In this project we have three components, First View Component public class AllViewComponent : ViewComponent { private readonly UserManager<ApplicationUser> _userManager; public AllViewComponent(UserManager<ApplicationUser> userManager) { _userManager = userManager; } public async Task<IViewComponentResult> InvokeAsync() { List<StudentViewModel> allUsers = new List<StudentViewModel>(); var items = await _userManager.Users.ToListAsync(); foreach (var item in items) { allUsers.Add(new StudentViewModel {Id=item.Id, EnrollmentNo = item.EnrollmentNo, FatherName = item.FatherName, Name = item.Name, Age = item.Age, Birthdate = item.Birthdate, Address = item.Address, Gender = item.Gender, Email = item.Email }); }
Introduction
Here i will explain TextBox control in various technology like asp.net c#, windows form, wpf, Jquery. Given a simple example of TextBox control in asp.net c#, windows form, wpf, Jquery etc.
The following are simple example of TextBox:
- Bind TextBox from comboBox in windows form
- Example of find TextBox in windows form c#
- Example of TextBox in asp.net c#
- Example of Text changed event of TextBox in asp.net
- Example of autocomplete type property of textbox control in asp.net
- Validating textbox in windows form
- AccessKey property example of TextBox in asp.net c#
- How to insert record into database table using TextBox in asp.net
- Text Box example in WPF
- Spell Check Text Box example in wpf
- Bind Text Box example in WPF
- Accept only number by Text Box example in JQuery
- Confirm password from Password box using eye button JQuery
- Text Box water mark example
- Currency TextBox example in windows form
- How to reset all TextBox in windows form
Comments
Post a Comment