vote up 0 vote down star

I was wondering if it was possible to load a asp.net control (.ascx) that doesn't reside on the file system?

Like say a string variable?

flag

42% accept rate

3 Answers

vote up 3 vote down check

Not a string varible but you can load it from resources or zip file, but you have to have full trust. Google for VirtualPathProvider.

link|flag
of course, if you can source web content from a zip file using a VPP, you can also source web content from anything - any sort of backing store. A database (I think sharepoint does this), or... even... a string. The key is the VPP. I don't know of a VPP that works with "strings" or in-memory representations, but the VPP model is not complicated and it should be straightforward to build one. – Cheeso Nov 5 at 17:20
Actually, there is one more way, loading it directly from the variable but you cannot have any expressions in the page <$= or <%# etc. You would create a class and then load markup using Page.ParseControl(markup). If you need example send me an email. – epitka Nov 5 at 17:24
@Cheeso: You are right, I was just pointing that he cannot do it straight from varible, but has to use provider for it. The only issue I have with providers is that they require full trust, so no application in shared hosting. – epitka Nov 5 at 17:25
vote up -1 vote down

You could try this:

string controlString = //read or build it
Control control = this.Page.TemplateControl.ParseControl(controlString);

More information is available here:

http://msdn.microsoft.com/en-us/library/kz3ffe28.aspx

link|flag
vote up 1 vote down

System.Reflection.Emit

Assembly.Load(byte[])

No designer for you if you do this though.

link|flag

Your Answer

Get an OpenID
or

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