Getting Runtime Error

Status
Not open for further replies.

machado

New Member
Messages
19
Reaction score
0
Points
0
I am upload my ASP.NET 3.5 files to my Free account but I'm getting RunTime error

[CODE
<!-- 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>
][/CODE]

I havent upload my web.config file so I'm wondering, does my free account support ASP.NET 3.5 or just 2.0 ? Or I just have to change something on web.config that already exists? (althoght I cant find it)...
 

xav0989

Community Public Relation
Community Support
Messages
4,467
Reaction score
95
Points
0
I believe mono only handles .NET 2.0, but I'll look at it.
 
Status
Not open for further replies.
Top