I’ve a small and cheap hosting which I use for my “company”. The main site (at root level) uses WordPress.
I would like to deploy some application in subdirectory, for example
http://www.mysite.com/demo_app1
http://www.mysite.com/demo_app2
Is it possible *without accessing to IIS virtual directory * ?
At the moment I get “Parse Error: unable to load ‘myapp._Default’ ”
I can’t access to IIS because my hosting is cheap (maybe .. too cheap 😉 ) …
Its impossible to create new web application from web.config on sub directories of your site.
The reasons are basic because you need to have higher access level, and also connect your web application to a specific pool. This can not been done from web.config it self.
Now one other solution to your problem is to try to make them run all together if your seconds applications are small. To do that use the root bin directory to add your dlls, and use the root web.config for add the extra settings for your sub applications. This can work if you do not have so difficult applications on your sub directories that not conflict with the root.