Ask a Question related to ASP.NET General, Design and Development.
-
Jay Balapa #1
Re: Weird Problem!! - Page_load cannot call a different class member.
Actually, trace statements in my called Class were not executing. Now I know
why, HttpResponse need to passed around to see the actual trace.
Is there an elegant way of doing except short of passing it as a parameter
to the function.
Thanks.
jay
"Jay Balapa" <jbalapa_nosam@atginc.com> wrote in message
news:OK6NesdVDHA.1704@TK2MSFTNGP11.phx.gbl...a> Hello,
>
> In the page_load of my aspx page, Iam unable to call a static function ofto> different class or am I able to instantiate a class and call its members.
>
> Static function code or member code is not executing at all. But Iam able> execute a local function.
>
> Is this a known issue.
>
> Thanks.
> jay
>
>
>
Jay Balapa Guest
-
base class member access (?)
Quesote wrote: Create $myArray as protected, not private. -
Actionscript: Custom class function call problem
Hello, In short, is it possible to create a custom class with a data structure and a couple of functions that can be later referred to after being... -
how do you explain this (OOP): Call to a member function on a non-object
Hello, what is wrong here? the purpose is to create an array of objects and then interate over it, calling some method from all of them. I get... -
Call The Page_load Event
Hi Dears I want to call the Page_load Event every 5 sec, how can I do that? I have no Ideia what I should do. I put in my web form the Timer... -
Fatal error: Call to a member function on a non-object in constructor?
Hi, I'm having a problem that I have a hard time understanding. I am getting a "Fatal error: Call to a member function on a non-object" on a... -
Karl Seguin #2
Re: Weird Problem!! - Page_load cannot call a different class member.
you can access: system.Web.HttpContext.Current.response
you might wanna make sure that Current isn't null before trying to access
it's response property...
karl
"Jay Balapa" <jbalapa_nosam@atginc.com> wrote in message
news:%23Q7VswdVDHA.2544@tk2msftngp13.phx.gbl...know> Actually, trace statements in my called Class were not executing. Now Iof> why, HttpResponse need to passed around to see the actual trace.
> Is there an elegant way of doing except short of passing it as a parameter
> to the function.
>
> Thanks.
> jay
>
>
> "Jay Balapa" <jbalapa_nosam@atginc.com> wrote in message
> news:OK6NesdVDHA.1704@TK2MSFTNGP11.phx.gbl...> > Hello,
> >
> > In the page_load of my aspx page, Iam unable to call a static functionmembers.> a> > different class or am I able to instantiate a class and call itsable> >
> > Static function code or member code is not executing at all. But Iam> to>> > execute a local function.
> >
> > Is this a known issue.
> >
> > Thanks.
> > jay
> >
> >
> >
>
Karl Seguin Guest



Reply With Quote

