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)...
[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)...