Forum Discussion
TinaAvt
Jun 04, 2024Copper Contributor
Any recommended UI/UX framework?
Hi,
I am new to .net. May I know if there is any UI/UX framework that is good for .net webpage with search criteria? I would like to have a textbox with the following input methods:
- Exact text match
- Wildchars *
- Copy and paste the list
- Enter number range
Thank you!
- rhj09Copper Contributor
Hi there,
For building a .NET webpage with advanced search criteria, I recommend using Blazor for your UI framework. Blazor allows you to create rich, interactive web UIs using C# instead of JavaScript. Here are a few features you can implement:
Textbox for Exact Text Match:
- Use a standard input element with validation to ensure exact text matching.
- Use a standard input element with validation to ensure exact text matching.
Wildcard Search:
- Implement logic to handle wildcard characters (*) in your search functionality.
- Implement logic to handle wildcard characters (*) in your search functionality.
Copy and Paste List:
- Use a textarea element that allows users to paste a list of items, and then process this list in your code.
- Use a textarea element that allows users to paste a list of items, and then process this list in your code.
Number Range Input:
- Use a combination of two number input fields or a range slider for users to specify a number range.
Blazor integrates well with .NET and provides a seamless experience for building modern web applications. Additionally, consider using a UI component library like Syncfusion Blazor or Telerik UI for Blazor to enhance your development process with pre-built components.
I hope this helps!
Best,
RHJ