0
votes
3answers
293 views
How can I check whether I am in a debug or release build in a web app?
In any (non-web) .net project, the compiler automatically declares the DEBUG and TRACE constants, so I can use conditional compiling to, for example, handle exceptions differently in debug vs relea …
0
votes
How can I check whether I am in a debug or release build in a web app?
This is what I ended up doing:
protected bool IsDebugMode
{
get
{
System.Web.Configuration.CompilationSection tSection;
tSection = ConfigurationManager.GetSe …
3
votes
ASP.NET application breaks when deploying to IIS
Usually, when something that works on the dev sever doesn't work on IIS, the problem is authorizations (the VS server runs under your credentials, but IIS runs as "Network Service" or another syste …
3
votes
Firefox ignores Response.ContentType
Try adding a Response.ClearHeaders() before calling ClearContents() like x2 mentioned and sending the file as application/octet-stream:
Respon …
