RadzenTextBox without binding

Hi Team,

I was wondering if its possible to create RadzenTextBox without any binding. I want some sort of Id/Name attribute in the TextBox using which I will refer the textbox to get the value. I think I used to do similar thing in old asp.net using id column. Is it not the case with Blazor?

I also didn't understand the use of the Name attribute.

Basically, I have to create about 15 textboxes and I'm reluctant to create 15 variable for them.

Thanks.

Hi @liquidloop,

Getting the value of an input component must go through binding in Blazor. This is one of the features of the framework - being declarative and binding user input to data instead of accessing component properties as in the ASP.NET WebForms days.

Thanks Korchev. That makes sense.