Hi, I'm trying to translate these Coldfusion pages to asp.net. It seems like with ColdFusion, if there are variables defined in a page, say pageA and then pageB includes this page:
<CFINCLUDE template="pageA.cfm">
Then I will have access to all the variable defined in pageA. Same thing if I include another page, pageC in pageB.
<CFINCLUDE template="pageC.cfm">
Then, in pageC, I will be able to reference all the variables in pageB. How can I do this in ASP.NET? Do I have to use UserControls? Do I have to use Session Variables to get the same result?