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
What is the difference between mvc and asp.net? : Asp.Net MVC
What is viewstate? What does the "enableviewstate” property do? Whay would I want it on or off?
What is the use of ASP.NET routing?
Why do we need url encoding?
Explain repository pattern in asp.net mvc? : asp.net mvc
Difference between response.redirect and server.transfer?
What is recordset asp?
List the major built-in objects in asp.net?
What are the advantages of the code-behind feature?
Where web.config file is used?
List of words of preprocessor in .net?
If Instancing = Single use for ActiveX Exe, how will this be executed if there are 2 consecutive client requests ?
Are there resources online with tips on asp to asp.net conversions?
What is an asp.net web form?
Explain diff. Betn dataset and recordset?