Ask a Question related to ASP, Design and Development.
-
Chris Hohmann #1
Enumerate Local Variable Scope
Does anyone know of a way to enumerate the local variable scope? The
reason I ask is that I have a function that dumps the contents of
response,request,server,etc... for debugging purposes. I'd like to also
display the local variables.
TIA
-Chris
Chris Hohmann Guest
-
Variable scope
What type of variable can you use that lasts between page refreshes is it possible or do i have to use session or a hidden field thanks -
Local Scope Variables
Hi, I'm having a bit of trouble with using some local scope variables. I have a function where I want to define a variable, then use that... -
Local Variable Scope in Ruby2
Hi, I was going through matz's slides from the Ruby Conference 2003, and was checking out what the slides claimed was the most regrettable behaviour... -
[PHP-DEV][2] Variable Scope
On Sunday, Aug 31, 2003, at 06:16 America/New_York, Ard Biesheuvel wrote: Nothing; I wish to concede: If you look further down the example, you... -
variable scope in c#
I'm calling this procedure from a custom validator OnServerValidate event. I keep getting the error : Use of unassigned local variable... -
Ray at #2
Re: Enumerate Local Variable Scope
I'd love it if someone replied and said, "That's not true; here's how," but
I do not believe there is any way to loop through a variables collection or
anything like that, other than to just code it yourself.
Although you probably would not want to do this, you could use all session
variables while debugging and loop through them though.
Ray at work
"Chris Hohmann" <hohmannATyahooDOTcom> wrote in message
news:OCZBR7OUDHA.2116@TK2MSFTNGP12.phx.gbl...> Does anyone know of a way to enumerate the local variable scope? The
> reason I ask is that I have a function that dumps the contents of
> response,request,server,etc... for debugging purposes. I'd like to also
> display the local variables.
>
> TIA
> -Chris
>
>
Ray at Guest
-
Chris Hohmann #3
Re: Enumerate Local Variable Scope
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:e43pnfRUDHA.2196@TK2MSFTNGP11.phx.gbl...how," but> I'd love it if someone replied and said, "That's not true; here'scollection or> I do not believe there is any way to loop through a variablessession> anything like that, other than to just code it yourself.
>
> Although you probably would not want to do this, you could use allalso> variables while debugging and loop through them though.
>
> Ray at work
>
> "Chris Hohmann" <hohmannATyahooDOTcom> wrote in message
> news:OCZBR7OUDHA.2116@TK2MSFTNGP12.phx.gbl...> > Does anyone know of a way to enumerate the local variable scope? The
> > reason I ask is that I have a function that dumps the contents of
> > response,request,server,etc... for debugging purposes. I'd like toYeah, that's what I thought. I do enumerate the Session and Application>> > display the local variables.
> >
> > TIA
> > -Chris
> >
> >
>
scope as well. I've settled for eval'ing items in a "watch list". Thanks
for the feedback.
-Chris
Chris Hohmann Guest



Reply With Quote

