Deloying an ASP site

A

Andrew Chalk

I have developed an SP.NET v1.1 application on my development machine. I
want to deploy it to another server on my LAN. Both systems run XP SP2. What
do I have to do to accomplish this?

Thanks.
 
M

m.posseth

Hello Andrew ,

Build you project , and copy the files to a virtual folder on the target
machine , you may delete the source files if you want

regards

Michel Posseth [MCP]
 
A

Andrew Chalk

Do I need to install the .NET Framework v1.1?

I copied the whole directory:

C:\Inetpub\wwwroot\CallviewWEB1

to the other server's wwwroot directory and the deafult page is available.
But ASP controls do not seem to be rendering at all.

Regards,

Andrew

m.posseth said:
Hello Andrew ,

Build you project , and copy the files to a virtual folder on the target
machine , you may delete the source files if you want

regards

Michel Posseth [MCP]


Andrew Chalk said:
I have developed an SP.NET v1.1 application on my development machine. I
want to deploy it to another server on my LAN. Both systems run XP SP2.
What do I have to do to accomplish this?

Thanks.
 
S

S. Justin Gengo

Andrew,

Here's what I like to do to assure I only deploy necessary files (The
following is an entry from the code library section of my website
www.aboutfortunate.com):

Deploy a web project with only the necessary files


When deploying a .NET web project Visual Studio.NET provides a great method
for getting only the necessary files.

Sample Code:


<!--First, make certain that you have set your web.config file's compilation
tag to debug="false"-->

<compilation defaultLanguage="vb" debug="false"

<!--
(Remember that when you run your code again in Visual Studio.NET you have to
change debug="false" back to "true" again or you'll get a "project is not
configured to be debugged" error.)

Switch your application to "Release" mode using the drop down in Visual
Studio.NET.

Next make certain that your project is highlighted in the solution explorer
by clicking on the web project's name once.

Click on the "Project" menu item in Visual Studio.NET and then click on
"Copy Project".

In the Copy Project window that opens the recommended copy method is "File
Share". Also make certain that the "Only files needed to run this
application" radio button is selected. Finally, click the "OK" button.

You will now have a new website created that contains only the files your
application needs to run. Copy these files to your production server.
-->

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
 
S

S. Justin Gengo

Andrew,

Yes, the server will have to have the .NET framework running on it.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
Andrew Chalk said:
Do I need to install the .NET Framework v1.1?

I copied the whole directory:

C:\Inetpub\wwwroot\CallviewWEB1

to the other server's wwwroot directory and the deafult page is available.
But ASP controls do not seem to be rendering at all.

Regards,

Andrew

m.posseth said:
Hello Andrew ,

Build you project , and copy the files to a virtual folder on the target
machine , you may delete the source files if you want

regards

Michel Posseth [MCP]


Andrew Chalk said:
I have developed an SP.NET v1.1 application on my development machine. I
want to deploy it to another server on my LAN. Both systems run XP SP2.
What do I have to do to accomplish this?

Thanks.
 

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

Members online

Forum statistics

Threads
474,434
Messages
2,571,689
Members
48,796
Latest member
Greg L.

Latest Threads

Top