Question asked by one of interviewer in panal is given
below:
We have 2 user control on same page ,1st user control
contains textbox and a button while 2nd user control have
label.
when ever we click on button click of 1st custom control
button the value of the textBox will get updated into Label
of 2nd custom control.
How to do this.Your help will be appreciated.
Answer Posted / magesh
ControlA ctrlA =
(ControlA)Page.FindControl("<usercontrolname>");
TextBox textBoxA=(TextBox)ctrlA.FindControl("<Textbox name>");
ControlB ctrlB =
(ControlB)Page.FindControl("<usercontrolname>");
Label labelB=(Label )ctrlB.FindControl("<Textbox name>");
Label.Text=TextBox.Text;
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
Mention few asp.net validators.
What is asp.net file?
What are the differences between the response.write() and response.output.write()?
What language does asp.net use?
What are session state modes?
What is the function of new view engine in asp.net? : asp.net mvc
Difference between .NET and previous version?
Which is an advantage of application service providers?
Explain Optimization technique description?
About CLR, reflection and assemblies?
a)COM Callable Wrapper b)Runtime Callable Which one of the above is Win32 API in .Net?
Explain ViewState?
IN an ASP.NET Web application if there is any error, how can you debug?
how can create login from create and written conde in asp.net
What is the exact purpose of http handlers?