Skip to content

Instantly share code, notes, and snippets.

Created January 16, 2014 11:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/8453123 to your computer and use it in GitHub Desktop.
Save anonymous/8453123 to your computer and use it in GitHub Desktop.
Mono exception. System.Web.Compilation.CompilationException CS1576: The line number specified for #line directive is missing or invalid
// ------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a tool.
// Mono Runtime Version: 2.0.50727.1433
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </autogenerated>
// ------------------------------------------------------------------------------
#pragma checksum "/tmp/1/default.aspx" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "AE1BBA1AAF5BEB863986327521ECCA02"
namespace ASP {
using System;
using System.Collections;
using System.Collections.Specialized;
using System.Configuration;
using System.Text;
using System.Text.RegularExpressions;
using System.Web;
using System.Web.Caching;
using System.Web.SessionState;
using System.Web.Security;
using System.Web.Profile;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
public class default_aspx : global::System.Web.UI.Page, System.Web.SessionState.IRequiresSessionState, System.Web.IHttpHandler {
private static bool __initialized = false;
private static object __stringResource = null;
private static object __fileDependencies = null;
private static int __autoHandlers;
public default_aspx() {
string[] dependencies;
((global::System.Web.UI.Page)(this)).AppRelativeVirtualPath = "~/default.aspx";
if ((global::ASP.default_aspx.__initialized == false)) {
dependencies = new string[1];
dependencies[0] = "~/default.aspx";
global::ASP.default_aspx.__fileDependencies = this.GetWrappedFileDependencies(dependencies);
global::ASP.default_aspx.__initialized = true;
}
}
[System.Obsolete()]
protected override int AutoHandlers {
get {
return ASP.default_aspx.__autoHandlers;
}
set {
ASP.default_aspx.__autoHandlers = value;
}
}
protected System.Web.HttpApplication ApplicationInstance {
get {
return ((System.Web.HttpApplication)(this.Context.ApplicationInstance));
}
}
protected System.Web.Profile.DefaultProfile Profile {
get {
return ((System.Web.Profile.DefaultProfile)(this.Context.Profile));
}
}
private void __BuildControlTree(default_aspx __ctrl) {
this.InitializeCulture();
System.Web.UI.IParserAccessor __parser = ((System.Web.UI.IParserAccessor)(__ctrl));
#line 0 ""
__parser.AddParsedSubObject(new System.Web.UI.LiteralControl("<html>\n<body>\nHello\n</body>\n</html>\n"));
#line default
#line hidden
}
protected override void FrameworkInitialize() {
base.FrameworkInitialize();
this.SetStringResourcePointer(global::ASP.default_aspx.__stringResource, 0);
this.__BuildControlTree(this);
this.AddWrappedFileDependencies(global::ASP.default_aspx.__fileDependencies);
this.Request.ValidateInput();
}
public override int GetTypeHashCode() {
return 2026794741;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment