How to Get Display
-
Hi.. I have a user control . in that i have a text box.. in a web form i am using another text box and button.. along with user control. now as soon as i type the text in user control text box, and click the button in web form , the text should be displayed in web form text box.. I am able to do it using Session.. Is there any other option of getting done??
Aswini
-
Hi.. I have a user control . in that i have a text box.. in a web form i am using another text box and button.. along with user control. now as soon as i type the text in user control text box, and click the button in web form , the text should be displayed in web form text box.. I am able to do it using Session.. Is there any other option of getting done??
Aswini
aswini07 wrote:
Is there any other option of getting done??
TextBoxweb.text = Ctype(ucl.FindControl("textBoxcul"),TextBox).Text
Session Objects are not meant for assigning value from one textBox to another. I recommend you to read a good ASP.NET Book to learn how to do such a thing.- Regards -
JON
Life is not measured by the amount of breaths we take, but by the moments that take our breath away.
-
Hi.. I have a user control . in that i have a text box.. in a web form i am using another text box and button.. along with user control. now as soon as i type the text in user control text box, and click the button in web form , the text should be displayed in web form text box.. I am able to do it using Session.. Is there any other option of getting done??
Aswini
Hi, Write a public property for the user control
Sherin Iranimose