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
Why mvc is faster than asp.net? : Asp.Net MVC
Explain the difference between authentication and authorization.
What is http pipeline in asp.net?
Explain code snippet to register exception filters from controller?
How to change Master page in ASP.Net using code?
How to deploy/publish webservices?How many ways?Plz explain me
Why should i prefer JSP over asp.net or any other web development language..??
Which is better viewstate or session?
How can we pass info between 2 asp.net pages?
What is the basic purpose of the required field validator? How can you use a required field validator to check that the user changes the initial value of a text box? a listbox?
Why and where this web.config file is used?
What are the differnt types of handler in ASP.NET?
What is clr? Difference between clr & cts?
What is DataGrid wheater its a Server Control or something else ?
Describe how to implement globalization and localization in the use interface in .net.