How to set/get parent page values in child page in asp.net
Answers were Sorted based on User's Feedback
Answer / sumit guglani
using context handler we can retrieve read only public
members(property) of parent page.
Is This Answer Correct ? | 4 Yes | 3 No |
Answer / jsureshdotnet
get=var uid=document.getElementById('txtUserId').value;
set=document.getElementById('txtUserId').innerText=uid;
Is This Answer Correct ? | 7 Yes | 7 No |
Answer / 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 |
Can we use multiple forms in single asp.net application?
What describes a query?
Can we have a web application running without web.config file?
How do you install windows service?
What is difference between Fragment Caching and Page Caching in ASP.NET?
What are the different methods that are used during the page load?
What is Difference between Application object and Session Object
Differentiate between globalization and localization.
repeater and gridview diff? Why is repeater fast than gridview?
What is the difference between adding reference in solution explorer and adding references by using ?
How to sign out from forms authentication?
what is Impersonation
3 Answers Alliance One, Task Informatics,