How to set/get parent page values in child page in asp.net
Answer Posted / renganathan (divas)
If Not Page.PreviousPage Is Nothing Then
Dim SourceTextBox As TextBox
SourceTextBox = CType(PreviousPage.FindControl
("TextBox1"), _
TextBox)
If Not SourceTextBox Is Nothing Then
Label1.Text = SourceTextBox.Text
End If
End If
| Is This Answer Correct ? | 6 Yes | 12 No |
Post New Answer View All Answers
What is form method?
What is the difference between typeof() vs gettype()?
What is the difference between globalization and localization?
What is server side session management?
What symbol would you use to denote, the start of a code block in aspx views?
Why do we need master page in asp.net?
What is difference Between Authentication and authorization?
What is the page life cycle in asp.net?
Is asp.net a language?
What are client activated objects?
What are Session states available and its Uses?
Explain how do you validate the controls in an asp .net page?
Is a dll file an executable?
When Cookies are expired in ASP.NET?
Which of the following .NET framework supports Web API?