You can use the Page property to get a link to the page object. However, the link is not of the type of your particular page class, so you cannot use it to access specific members of the class without first launching it:
MySpecificPageClass page = (MySpecificPageClass)Page;
Now you can use the link to access any public members of the class. The controls on the page are often declared secure, so you may need to change their access level to access them from the outside.
Guffa source share