vote up 2 vote down star

As I mentioned here, I'm trying to generate HTML from an ASPX page inside a WinForms.

I'm trying to compile the ASPX page directly into the EXE; I'd like to be able to write something like this:

var page = new ASP.MyPageName();
var stringWriter = new StringWriter();
using(var htmlWriter = new HtmlTextWriter(stringWriter))
    page.RenderControl(htmlWriter);

I added an ASPX page, set the Build Action to Compile, and put in the following Page declaration:

<%@ Page Language="C#" ClassName="MyPageName" %>

The code compiles, and the properties that I defined in the ASPX are usable from the calling code, but the StringWriter remains empty. I tried calling htmlWriter.Flush, and it didn't help.

The page instance's Controls collection is empty, and it probably shouldn't be.
I looked at the EXE in Reflector and I couldn't find the page content anywhere. I therefore assume that the page isn't being compiled properly.

What is the correct way to do this?

flag

Now it won't even compile: There is a circular dependency in the target dependency graph involving target "Build". – SLaks Nov 2 at 14:28
Wow, never thought of taking that approach. have fun – Chris Ballance Nov 2 at 14:58

6 Answers

vote up 2 vote down

I believe what you want to use is the SimpleWorkerRequest.

Unfortunately, however, it requires that the resource (I believe) live on disk. From your description it sounds like you prefered for the whole app to reside in your DLL. If that is the case you will most likely need to implement your own HttpWorkerRequest.

link|flag
vote up 2 vote down

Warning

This does not work reliably, and I've given up on it.


I ended up copying the files to the output folder and initializing ASP.Net in same AppDomain, using the following code: (I tested it; it sometimes works)

static class PageBuilder {
	public static readonly string PageDirectory = Path.Combine(Path.GetDirectoryName(typeof(PageBuilder).Assembly.Location), "EmailPages");

	static bool inited;
	public static void InitDomain() {
		if (inited) return;
		var domain = AppDomain.CurrentDomain;

		domain.SetData(".appDomain", "*");
		domain.SetData(".appPath", PageDirectory);
		domain.SetData(".appVPath", "/");
		domain.SetData(".domainId", "MyProduct Domain");
		domain.SetData(".appId", "MyProduct App");
		domain.SetData(".hostingVirtualPath", "/");

		var hostEnv = new HostingEnvironment();//The ctor registers the instance

		//Ordinarily, the following method is called from app manager right after app domain (and hosting env) is created
		//Since CreateAppDomainWithHostingEnvironment is never called here, I need to call Initialize myself.
		//Here is the signaature of the method.
		//internal void Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters) { 

		var cmp = Activator.CreateInstance(typeof(HttpRuntime).Assembly.GetType("System.Web.Hosting.SimpleConfigMapPathFactory"));
		typeof(HostingEnvironment).GetMethod("Initialize", BindingFlags.NonPublic | BindingFlags.Instance).Invoke(hostEnv, new[] { ApplicationManager.GetApplicationManager(), null, cmp, null });

		//This must be done after initializing the HostingEnvironment or it will initialize the config system.
		SetDefaultCompilerVersion("v3.5");

		inited = true;
	}

	static void SetDefaultCompilerVersion(string version) {
		var info = CodeDomProvider.GetCompilerInfo("c#");
		var options = (IDictionary<string, string>)typeof(CompilerInfo).GetProperty("ProviderOptions", BindingFlags.Instance | BindingFlags.NonPublic).GetValue(info, null);

		options["CompilerVersion"] = version;
	}


	public static TPage CreatePage<TPage>(string virtualPath) where TPage : Page {
		return BuildManager.CreateInstanceFromVirtualPath(virtualPath, typeof(TPage)) as TPage;
	}

//In a base class that inherits Page:

	internal string RenderPage() {
		var request = new SimpleWorkerRequest("", null, null);

		ProcessRequest(new HttpContext(request));
		using (var writer = new StringWriter(CultureInfo.InvariantCulture)) {
			using (var htmlWriter = new HtmlTextWriter(writer))
				RenderControl(htmlWriter);
			return writer.ToString();
		}
	}

InitDomain must be called right when the program starts; otherwise, it throws an exception about the configuration system being already initialized.

Without the call to ProcessRequest, the page's Controls collection is empty.


UPDATE: The page is rendered during the call to ProcessRequest, so that must be done after manipulating the Page instance.

This code will not work if the program has a .config file; I made a method to set the default C# compiler version without a .config file using reflection.

link|flag
This is a great idea... i'm trying to get the same working here. When I call "var page = PageBuilder.CreatePage<MyPageName>(someVirtualPath);" I don't know what value to use for 'someVirtualPath'. I figure it will be related to the name of my aspx file, but I can't get a value that works. – Leon Bambrick Nov 5 at 7:28
virtualPath is an absolute path relative to PageDirectory. For example,, if SomePage.aspx is directly in PageDirectory, it should be /SomePage.aspx. If it's in a subfolder, the virtual path would be /SubFolder/SomePage.aspx. – SLaks Nov 5 at 14:56
By the way, when debugging this, make sure to turn on Break on All Exceptions (Debug, Exceptions), or you may get mysterious problems. (HostingEnvironment.Initialize swallows exceptions) – SLaks Nov 5 at 14:57
Thanks SLaks, both comments were helpful. Do I need to add a Global.asax somewhere? I've now got a NullRef exception at BuildManager.CreateInstanceFromVirtualPath -- the inner exception leads me to: System.Web.Compilation.ApplicationBuildProvider.GetGlobalAsaxBuildResult(Boolean isPrecompiledApp), which is why i think i have to stop it worrying about a global.asax. – Leon Bambrick Nov 6 at 0:10
I had the same problem, and gave up. The underlying problem is that AppDomain.CurrentDomain.DynamicDirectory is null, causing httpRuntime.SetUpCodegenDirectory to throw an exception during Initialize that gets swallowed by hostingInit. Becasue of this exception, the ASP.Net runtime doesn't get fully initialized, causing one of the properties used by GetGlobalAsaxBuildResult to be null. To see this, enable Break on all exceptions, and look at the source for SetUpCodegenDirectory. For an alternative solution, see my second answer. – SLaks Nov 6 at 13:57
vote up 1 vote down

Why dont you just look at hosting the ASP.NET runtime in your app?

There are several snippets online to show you how.

Here is one.

link|flag
As I explained in the linked question, I'm not actually making a web server. Also, I'd like to avoid hosting a separate AppDomain. – SLaks Nov 2 at 14:31
vote up 1 vote down

Hello,

Most likely you are using wrong page class. You need to use not the actual nice-named class in code behind. During compilation ASP.NET generates page class, which inherits from class defined in code behind and within this class happens initialization of all the controls. Therefore you should use generated class (check its name using Reflector).

link|flag
I am using the generated class, in the auto-generated ASP namespace. (I checked using Reflector) I put some properties in <script runat="server> blocks (the page has no code-behind file) and the properties work fine. – SLaks Nov 2 at 14:35
(The ClassName attribute in @Page controls the name of the generated class) – SLaks Nov 2 at 14:37
vote up 0 vote down

you can use the ClienBuildManager class to compile ASPX files.

link|flag
AFAIK, that requires a separate AppDomain, which I'd like to avoid. – SLaks Nov 2 at 14:37
I'm not an expert, but as far as I know it generates a new AppDomain while compiling the ASPX pages, but it will return a Type object that you can instantiate in your own AppDomain. – Pete Nov 3 at 7:00
Yes, but in order to render the page, it must be run through HttpRuntime.ProcessRequest, which requires ASP.Net tp be initialized in the AppDomain that it's run in. – SLaks Nov 5 at 15:00
vote up 0 vote down check

I ended up using ApplicationHost.CreateApplicationHost to run the entire application in the ASP.Net AppDomain. This is far simpler and more reliable than my attempt to fake the ASP.Net AppDomain.

Note: In order to do this, you must put a copy of your EXE file (or whatever assembly contains the type passed to CreateApplicationHost) in your ASP.Net folder's Bin directory. This can be done in a post-build step. You can then handle AssemblyResolve to locate other assemblies in the original directory.

Alternatively, you can place the program itself and all DLLs in the ASP.Net's Bin directory.

NOTE: WinForms' Settings feature will not work in an ASP.Net AppDomain.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.