ASP.NET Problem

Status
Not open for further replies.

tmachine

New Member
Messages
9
Reaction score
0
Points
0
I get the error message :

Server Error in '/faq/uninstall' Application

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->

<configuration>
<system.web>

<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>

</system.web>
</configuration>Version information: Mono Version: 2.0.50727.1433; ASP.NET Version: 2.0.50727.1433<!--

I have tried setting the custom errors mode off and tried adding exra permissions.

http://time-machine.co.cc/faq/uninstall/

i made it in visual studio 2010

Is ASP.NET Supported?
 
Last edited:

xav0989

Community Public Relation
Community Support
Messages
4,467
Reaction score
95
Points
0
I get the error message :

Server Error in '/faq/uninstall' Application

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->

<configuration>
<system.web>

<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>

</system.web>
</configuration>Version information: Mono Version: 2.0.50727.1433; ASP.NET Version: 2.0.50727.1433<!--

I have tried setting the custom errors mode off and tried adding exra permissions.

http://time-machine.co.cc/faq/uninstall/

i made it in visual studio 2010
Hi tmachine,

you pointed out that you made that website using visual studio 2010. However, the Mono Framework (a program that we use to host .NET applications) does not support the .NET framework version 3.5. You'll have to remake your website using an earlier version for it to work.

- xav0989
 

tmachine

New Member
Messages
9
Reaction score
0
Points
0
oh what version is it then, i have the option of.net 2.0 to .net 4.0

2.0 i guess
 

xav0989

Community Public Relation
Community Support
Messages
4,467
Reaction score
95
Points
0
oh what version is it then, i have the option of.net 2.0 to .net 4.0

2.0 i guess
I believe some parts of 3.0 are supported, but the best support is currently for 2.0.

- xav0989
 
Status
Not open for further replies.
Top