tehon3299 Posted February 22, 2003 Posted February 22, 2003 I have an ASCX page in C# for file uploads and an ASPX page that references the ASCX page. I need to reference a variable in the ASCX page that is public. How can I reference that on my ASPX page?? Quote Thanks, Tehon
*Experts* Bucky Posted February 22, 2003 *Experts* Posted February 22, 2003 You need to declare a new instance of the ASCX control, and then you can access its public variable. If you've added the control to the ASPX page, then a new instance of the control will be created at runtime automatically, so to get the variable you can just access it through the ASCX control's name. If myControl were the ASCX control, then you would use: myControl.VariableName to get and set the value. Quote "Being grown up isn't half as fun as growing up These are the best days of our lives" -The Ataris, In This Diary
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.