This is what my hosting service said

  • Thread starter Thread starter jty202
  • Start date Start date
J

jty202

"Although we do support the ASP.NET Starter Kits, we do not do the
installation for you. You can run the installation file locally, then
upload the kit. You will not be able to compile on the server. You will be
able to set your .NET virtual directories through our web based control
panel. This same support is available for DotNetNuke. We support the
application, but not the installation.

Please let us know if you have additional questions."

-------------------------------------------------------------

Questions.....

What do they mean that I can't compile on the server?? What file types are
involved (.aspx , ascx)?

Now, what can and can't I do in ASP.net with this hosting service?

In ASP.net which files types are (precompiled)? Which are interpreted
(embedded wtth HTML code)?


Thanks
 
That sounds about right.

You won't be able to use their compiler to
build your dlls. You'll have to do that locally.

You'll then upload your assemblies to the /bin directory,
and your aspx, ascx and other support files to
the appropiate directories.

All your pages *will* get JIT-compiled by them, though.
The net result will work as advertised : compiled pages.

Just not compiled dll's. Those you will compile yourself.



Juan T. Llibre
ASP.NET MVP
===========
 
Back
Top