Problem in getting The Value of Dynamic created TextBox in asp.net?
-
Hello all, How we get The Value of Dynamic created TextBox in asp.net? i have a web form and in which i want to create textbox dynamically by click on Button ...Now,on another button click I want to retrieve the value of dynamically created textbox. Please help me.If possible,try to explain me with example. Thanks, aekta
-
Hello all, How we get The Value of Dynamic created TextBox in asp.net? i have a web form and in which i want to create textbox dynamically by click on Button ...Now,on another button click I want to retrieve the value of dynamically created textbox. Please help me.If possible,try to explain me with example. Thanks, aekta
-
Hello all, How we get The Value of Dynamic created TextBox in asp.net? i have a web form and in which i want to create textbox dynamically by click on Button ...Now,on another button click I want to retrieve the value of dynamically created textbox. Please help me.If possible,try to explain me with example. Thanks, aekta
to create dynamic textbox use html input type=text because i think u can't create asp.net control at runtime. i create dynamic textbox but i m not able to retrive the value of that. to create dynamic text box.
string strHTML = ""; strHTML += " "; tdimage.InnerHtml = strHTML;
for create more text box use loop. in HTMLanujsharma
-
Hello all, How we get The Value of Dynamic created TextBox in asp.net? i have a web form and in which i want to create textbox dynamically by click on Button ...Now,on another button click I want to retrieve the value of dynamically created textbox. Please help me.If possible,try to explain me with example. Thanks, aekta
-
u can do this dim text1 as Textbox text1 = ctype(me.findcontrol(IDofTextbox),textbox) dim str as string str = text1.text
Thanks, Sun Rays