Load CR Viewer

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi ,

I have a two aspx page created to handle the report.

1) 1.ascx
2) 2.ascx

1.ascx contain the filtering of report parameter and 2.ascx contain the
CR Viewer.
how can I refer to the CR Viewer to 2.ascx from 1.ascx ?
 
I'm not sure why you want to do it this way, but you probably should combine
these two user controls since they are dependent on each other and user
controls should be independent of other user controls (that are not
embedded).

You could possibly create a reference to 1.ascx in 2.ascx by referencing
1.ascx on your aspx and then reference the aspx in 2.ascx. Note that this
can be very susceptible to errors and I wouldn't consider it good
programming practice.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top