Publishing ASP.NET 1.1 website without VS

M

Marek Zegarek

Hello,

How to publish website on company's IIS without Visual Studio? I now, that
website must be precompiled on IIS (not like 2.0).
Are somewhere in .NET any tools for that?
I don't have any chance for Visual Studio in environment....

Regards
Marek
 
G

George

Publishing is simply copying all related files.

You can use
C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_compiler to precompile
application

Here is mine command to precompile application into root /RetailStore/
C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_compiler -v
/RetailStore/ -p C:\Inetpub\wwwroot\RetailStore -f C:\tmp\RetailStore

George.
 
J

Juan T. Llibre

re:
!> Publishing is simply copying all related files.

With the caveat that : the application must be configured at
the server to target the appropiate .Net Framework version.



Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en espanol : http://asp.net.do/foros/
======================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top