Uncompiling asp.net

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

I have a large asp.net web site, but our web host does not support compiled
..net. How do I now convert the site to run uncompiled?

Paul
 
Paul said:
I have a large asp.net web site, but our web host does not support compiled
.net. How do I now convert the site to run uncompiled?

Paul

they're saying even tho they have .NET installed, they don't support
compiled dlls? interesting, cuz what you're about to do gets compiled
anyway behind the scenes (it's a compiled framework, no interpretation)...

you'd have to put all code-behind code in the pages themselves (.aspx),
cross your fingers and hope it compiles at run-time...

but i'd double (and triple) check with them on their claim. makes no
sense, cuz anything you would do in a dll, you could do in a code-front....
 
but i'd double (and triple) check with them on their claim. makes no
sense, cuz anything you would do in a dll, you could do in a
code-front....

Ya, some hosts are retarded... My company uses Easyhosting and they don't
support codebehind : (
 
I have a large asp.net web site, but our web host does not support
compiled .net. How do I now convert the site to run uncompiled?

You'll need to copy and paste all the code behind into the ASPX files.

It's a pain... best thing to do is switch hosts.

CrystalTech.com is a good alternative... or even Brinskter.com
 
The host is Blue Genesis here in Toronto and I have tried installing the DLL
on the web site and it doesn't work. I have (triple) checked that they don't
support the DLL.

Paul
 
Back
Top