0
I’m making a web application with ASP.NET and C#.
In this application I can register several items of the same type, so it has a text field and a button on the side to create new text boxes. I’ve worked with this in desktop app, but do not know how to generate the fields in the file .aspx.
How can I do that? I must do this command on .aspx or in the .cs? How can I pass the data later?
It is not clear what you are asked, consider reformulating your question more clearly and objectively.
– Ricardo
I want to generate fields at runtime, that’s all
– jpklzm
@jpklzm Let me get this straight, do you want to generate fields dynamically in the user’s browser? Please insert a piece of code that you use to generate the first field, and inform if the generated object will be "clone" of that.
– Leandro Amorim
That’s right @Leandroamorim. But I want to do it by C# or ASP.NET (I don’t know if there is such a possibility)
– jpklzm