PoppapumpJ
Programmer
I apologize if this is somewhere else and I've just missed it.
I have a footer (label control) in my MaterPage that I use to display any errors that occur during the processing of a transaction.
I have opened this label control as a public property in the master page and I can add text to the control from my regular pages.
My problem is that I would like to display errors that occur in some of my globally accessable functions which reside in the App_Code.
Since items in App_Code can't see the items outside of it, I'm having trouble dsplaying these messages.
So far, the best I have come up with is to put the messages in a collection stored as a session variable. The Master page then reads from the session variable. It works... but it just doesn't feel right.
Thanks for the help.
I have a footer (label control) in my MaterPage that I use to display any errors that occur during the processing of a transaction.
I have opened this label control as a public property in the master page and I can add text to the control from my regular pages.
My problem is that I would like to display errors that occur in some of my globally accessable functions which reside in the App_Code.
Since items in App_Code can't see the items outside of it, I'm having trouble dsplaying these messages.
So far, the best I have come up with is to put the messages in a collection stored as a session variable. The Master page then reads from the session variable. It works... but it just doesn't feel right.
Thanks for the help.