deploying ASP.NET?

  • Thread starter Thread starter donald sorrenson
  • Start date Start date
D

donald sorrenson

hey all
I have created an ASP.NET with my VS2003. its working fine with my machine,
however I need to deploy this solution. I assume that I can use the
installation procedure comes with VS, and I would, had this was an actual
client program. since I am new to all of this, this is only test pages, and
I wonder:

how can I add a built up solution with out the wizard?

TY
dony
 
This is an ASP.NET application, right?

Just use the "Copy Project" button on the top of the Solution Explorer
window and enter the appropriate data..
 
TY for your response
I try this, and I can create a copy of this on my machine, but when I copy
this folder to another machine it doesn't work.
the issue here is that I want copy the files and configure the remote
machine myself, and not have VS do that 4 me. I can achieve that writing
..NET code in notepad, and moving the code from place to place, but can't do
that manually with VS.NET... I am sure that if I will try to use this copy
to a remote server it will work, but I need to understand this process in
order to conduct this manually.
 
There really isn't that much to understand.

The remote machine must already have the .NET Framework installed on it.

To get your application to run on the remote machine, a virtual directory
(sub-web) must be created on the remote machine. Your completed and
compiled project files only need to be copied into that sub-web.

That's all you are doing with VS's "copy project" button. .NET only
requires the files be present. There is no registration process required.
 
Scott said:
The remote machine must already have the .NET Framework installed on
it.
To get your application to run on the remote machine, a virtual
directory (sub-web) must be created on the remote machine. Your
completed and compiled project files only need to be copied into that
sub-web.

Also, the remote web site must be an IIS Application with the FrontPage
Server Extensions installed in order for the "copy project" feature to work
correctly.

--

Thanks,
Carl Prothman
Microsoft ASP.NET MVP

Hire top-notch developers at
http://www.able-consulting.com
 
Copy Project also works with ftp share...

--
Regads,

HD

PS: It's all a state of mind...
 
sorry just cross checked it... front page and network share

--
Regads,

HD

PS: It's all a state of mind...
 
Back
Top