|
pls help!!!! i have this declaration
dim txtBox as new TextBox dim txtBox1 as TextBox
Sub CreateControl(byval i as integer) controls.add(txtBox)
dim x as integer for x = 0 to i ShowTextBox() next
End Sub
sub ShowTextBox() txtBox1 = new TextBox controls.add(txtBox1) End Sub
***I am creating a web custom control the txtBox is working just fine while the txtBox1 will dissappear in my form when it postBack(when i click the button) pls help me to fix my problem because i need to create a textbox dynamically where the no.of txtbox1 will depend to user inputs
|