Y
Yoni
I created two projects, one web and one windows app.
The Conditional code works ONLY for the windows app:
#if (DEBUG)
MessageBox.Show ("In Debug");
#else
MessageBox.Show("Not Debug");
#endif
but NOT for the web:
===
#if (DEBUG)
Response.Write("In Debug");
#else
Response.Write("Not Debug");
#endif
What the heck is going on ?!
The Conditional code works ONLY for the windows app:
#if (DEBUG)
MessageBox.Show ("In Debug");
#else
MessageBox.Show("Not Debug");
#endif
but NOT for the web:
===
#if (DEBUG)
Response.Write("In Debug");
#else
Response.Write("Not Debug");
#endif
What the heck is going on ?!