Forum Discussion

TinaAvt's avatar
TinaAvt
Copper Contributor
Jun 04, 2024

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!

 

 

  • rhj09's avatar
    rhj09
    Copper Contributor

    TinaAvt 

    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:

    1. Textbox for Exact Text Match:

      • Use a standard input element with validation to ensure exact text matching.

    2. Wildcard Search:

      • Implement logic to handle wildcard characters (*) in your search functionality.

    3. 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.

    4. 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

     

Resources