i'm hosted on starka server, when i load a simple aspx pages, the server show me the next error:
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /index.aspx
my web.config:
index.aspx:Code:<?xml version="1.0"?> <configuration> <appSettings/> <connectionStrings/> <system.web> <customErrors mode="Off" /> </system.web> </configuration>
I can to load a simple index.html fine, but when i change the extension file to aspx, there occur the same error. it doesn't matter what file aspx i want to load, the message error is one:Code:<%@ Page Language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <div> <asp:Label ID="Label1" runat="server" Text="Hello world"></asp:Label> </div> </form> </body> </html>
The resource cannot be found.
What happen there? problem with mono in the base system?


LinkBack URL
About LinkBacks
Reply With Quote


star button at the bottom left to rate this post. Thanks.

