Help! accessing a textbox value from within a custom server control

  • Thread starter Thread starter quinton
  • Start date Start date
Q

quinton

I have a webform with a custom server control applied to it. on the
webform I have a single server side textbox which I wish to access
from within the server side control after submiting the form back to
the same webform. Please how do i do this? I am new to C#.NET and
would be very greatful for some/any help.

Many thanks in advance,
Quinton.
 
Within your custom server control use

TextBox tb = Parent.FindControl(yourTextboxID)
if(tb != null) Response.Write(tb.Text)

Suresh

----- quinton wrote: ----

I have a webform with a custom server control applied to it. on th
webform I have a single server side textbox which I wish to acces
from within the server side control after submiting the form back t
the same webform. Please how do i do this? I am new to C#.NET an
would be very greatful for some/any help

Many thanks in advance
Quinton
 
Back
Top