How can I get more details about error?

Technical support leader

Juraj Ondrus asked on March 18, 2009 08:48

How can I get more details about error?

Correct Answer

Juraj Ondrus answered on March 18, 2009 08:48

Text: There are two ways which could provide more details about error:

1. A "Debug=true" directive at the top of the file that generated the error. For example:

<%@ Page Language="C#" Debug="true" %>

2. The following section in the configuration file of your application:

<configuration>
<system.web>
<compilation debug="true"/>
</system.web>
</configuration>

0 votesVote for this answer Unmark Correct answer

   Please, sign in to be able to submit a new answer.