well if you are sure that your DATA is gone, and not just your deployed espace, then try to check one last thing. C:\Program Files (x86)\Microsoft SQL Server\MSSQL.1\MSSQL\Data\ <-- this should be the default location for your outsystems database by default the system uses : outsystems.mdf & outsystems_log.LDF if you have REMOVED the platform / SQL server in an attempt to fix your problem with updating *I'm still having issues* you would see files like : outsystems_.mdf outsystems__.mdf If that's not the case, then I would defenately have a "chat" with support if I where you. In my experience it can happen that you loose the deployed espace, but with a redeploy/publish the original data should still be there and availible for your espace. as well as in DEV as in PRD. Good luck.
After ASP.NET 4 has been enabled on IIS 6, ASP.NET 2.0 applications that run on IIS 6 (in either Windows Server 2003 or Windows Server 2003 R2) might generate errors such as the following:
System.Web.HttpException: Path '/[yourApplicationRoot]/eurl.axd/[Value]' was not found.
This error occurs because when ASP.NET detects that a Web site is configured to use ASP.NET 4, a native component of ASP.NET 4 passes an extensionless URL to the managed portion of ASP.NET for further processing. However, if virtual directories that are below an ASP.NET 4 Web site are configured to use ASP.NET 2.0, processing the extensionless URL in this way results in a modified URL that contains the string "eurl.axd". This modified URL is then sent to the ASP.NET 2.0 application. ASP.NET 2.0 cannot recognize the "eurl.axd" format. Therefore, ASP.NET 2.0 tries to find a file named eurl.axd and execute it. Because no such file exists, the request fails with an HttpException exception.
eurl.axd
You can work around this issue using one of the following options.
If it is not practical to remap the Web site to ASP.NET 2.0 or to change the location of a virtual directory, explicitly disable extensionless URL processing in ASP.NET 4. Use the following procedure:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ASP.NET\4.0.30319.0