I made an ASP.Net Web Forms application and it's working in debug mode in Visual Studio 2012. But when I uploaded the application folder into my Apache with mod_mono I got an Error that indicates I should do this in my web.config:
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
My question now is, how should I set up my application from Debug to Release? When I clicked on create application it just gave me a short message in the console. When I use the deploy application option I got a menu with some serversettings that I don't understand and that I don't know.
edit
now i got this Error Message:
Parser Error
Description: Error parsing a resource required to service this request. Review your source file and modify it to fix this error.
Parser Error Message: The file '~/Site1.Master' does not exist
Source Error:
Line 1: <%@ Page Title="" Language="C#" MasterPageFile="~/Site1.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication1.WebForm6" %> Line 2: Line 3:
but i there is the Site1.Master in this folder.