Under ASP.NET, is there any variable to determine debug or runtime mode?
Under ASP.NET, is there any variable to determine debug or runtime mode?
Collapse
This topic is closed.
X
X
-
ABCTags: None -
Ben Amada
Re: Under ASP.NET, is there any variable to determine debug or runtime mode?
ABC,
It appears that you successfully changed your computer's time zone setting
to +0800 (HK time), but now you need to change the system time on your
computer -- you're still posting in the future.
Thanks,
Ben
-
Ben Amada
Re: Under ASP.NET, is there any variable to determine debug or runtime mode?
Actually, your system time might be correct -- it's just the date that is
incorrect (you're 1 day ahead of the rest of us).
Ben
Comment
-
Mr Newbie
Re: Under ASP.NET, is there any variable to determine debug or runtime mode?
Just get back up that church tower and attach the lightning rod to the Flux
Capacitor.
That should do it !!
;-D
--
Best Regards
The Inimitable Mr Newbie º¿º
--------------------------------------------------------------------------
"Ben Amada" <ben@REpoMOweVE rpick.com> wrote in message
news:OXoajfE5FH A.2036@TK2MSFTN GP14.phx.gbl...[color=blue]
> Actually, your system time might be correct -- it's just the date that is
> incorrect (you're 1 day ahead of the rest of us).
>
> Ben
>[/color]
Comment
-
Ben Amada
Re: Under ASP.NET, is there any variable to determine debug or runtime mode?
Mr Newbie wrote:
[color=blue]
> Just get back up that church tower and attach the lightning rod to the
> Flux Capacitor.
>
> That should do it !!
>
> ;-D[/color]
lol ... that is 'heavy' doc!
Looking at a recent post by ABC in his other thread, it appears he corrected
the system date on his computer - whew!
Ben
Comment
-
S.M. Altaf [MVP]
Re: Under ASP.NET, is there any variable to determine debug or runtime mode?
That depends on what you are trying to accomplish. Please elaborate
--------------------------------------------------------------------------------
All that glitters has a high refractive index.
"ABC" <abc@abc.com> wrote in message
news:%23BcASDE5 FHA.636@TK2MSFT NGP10.phx.gbl.. .[color=blue]
> Under ASP.NET, is there any variable to determine debug or runtime mode?
>
>[/color]
Comment
-
Jay Douglas
Re: Under ASP.NET, is there any variable to determine debug or runtime mode?
Here's what I have been doing:
bool isDebug;
#if (DEBUG) isDebug = true;
--
Jay Douglas
"ABC" <abc@abc.com> wrote in message
news:%23BcASDE5 FHA.636@TK2MSFT NGP10.phx.gbl.. .[color=blue]
> Under ASP.NET, is there any variable to determine debug or runtime mode?
>
>[/color]
Comment
-
Jeff Siver
Re: Under ASP.NET, is there any variable to determine debug or runtime mode?
You can use Debugger.IsAtta ched to determine if the site is running within
the debugger. This is in the System.Diagnost ics namespace.
Jeff
"Jay Douglas" <jayREMOVEIFNOT SPAM@jaydouglas .com> wrote in message
news:%23I8YoLJ5 FHA.1028@TK2MSF TNGP11.phx.gbl. ..[color=blue]
> Here's what I have been doing:
>
> bool isDebug;
>
> #if (DEBUG) isDebug = true;
>
>
> --
> Jay Douglas
> http://www.jaydouglas.com
>
>
> "ABC" <abc@abc.com> wrote in message
> news:%23BcASDE5 FHA.636@TK2MSFT NGP10.phx.gbl.. .[color=green]
>> Under ASP.NET, is there any variable to determine debug or runtime mode?
>>
>>[/color]
>
>[/color]
Comment
-
clintonG
Re: Under ASP.NET, is there any variable to determine debug or runtime mode?
ASP.NET 2.0 has new and unique capabilites which supports attributes and
meta data in the code only when the debug preprocessor directive is used
very coolski.
<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee. com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/
"ABC" <abc@abc.com> wrote in message
news:%23BcASDE5 FHA.636@TK2MSFT NGP10.phx.gbl.. .[color=blue]
> Under ASP.NET, is there any variable to determine debug or runtime mode?
>
>[/color]
Comment
Comment