A
Arne
I can create a webcontrol dynamically and add it to a placeholder.
Dim box as TextBox = new TextBox()
placeholder1.controls.add(box)
But then I will not get any viewstate.
I have seen programs that create webcontrols at runtime and then compiles
them into the GAC. I don't remember how.
Can anyone tell me how?
Dim box as TextBox = new TextBox()
placeholder1.controls.add(box)
But then I will not get any viewstate.
I have seen programs that create webcontrols at runtime and then compiles
them into the GAC. I don't remember how.
Can anyone tell me how?