passing objects in asp.net

  • Thread starter Thread starter chris blackbur
  • Start date Start date
C

chris blackbur

I have a reference tag in one of my asp.net pages that looks like:
<%@ Reference Page="ReportSetup.aspx" %>

When the page is loaded, I check that the Context.Handler is this
referenced object and save it to a local object. I then access
properties that were stored when the page was posted. This all works
fine in my environment. I have loaded it on three win xp machines with
iis installed and it works fine. Then, I loaded my code on the
production windows 2003 server and it no longer works. Any ideas what
could be causing this to not work. Maybe permissions issues or
something?

Thanks,
Chris Blackburn
 
No, no error message. The stored procedure that is getting called takes
two parameters, but both can be null. In this case they are null, so the
stored procedure is returning the full set of data. For some reason,
when I go to get the hashtable from the reference page that has the
parameters I need, it is null, but in my test environment, the hashtable
has the values I need.
 
Back
Top