473,386 Members | 1,819 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Deployment Issues

Hi There!

I'm just wondering what are the deployment issues with ASP.NET (VB.NET) ?
How do I deploy them to my hosting server? Do I just upload the dll files in
the \bin directory or do I also upload the corresponding aspx files? What
about the Visual Studio .NET project files?

One issue I've came across is that when I move projects between computers or
download samples off the Net, I need to re-compile the projects in-order to
make them run properly. If that's the case, how do I recomplie them when I
upload them onto my web host? It seems impossible. But there sure got to be
a way for it. Please advice.

Many Thanks,
Don
Nov 18 '05 #1
4 1085
"Don Wash" <do*@wash.com> wrote in message
news:u4****************@TK2MSFTNGP10.phx.gbl...
I'm just wondering what are the deployment issues with ASP.NET (VB.NET) ?
How do I deploy them to my hosting server? Do I just upload the dll files in the \bin directory or do I also upload the corresponding aspx files? What
about the Visual Studio .NET project files?
Investigate the "Copy Project" function.
One issue I've came across is that when I move projects between computers or download samples off the Net, I need to re-compile the projects in-order to make them run properly. If that's the case, how do I recomplie them when I
upload them onto my web host? It seems impossible. But there sure got to be a way for it. Please advice.


There's no need to recompile. However, you may need to make some
modifications to your Web.config file if it contains pointers or paths to
resources on your development machine which reside in different locations on
the deployment server.
Nov 18 '05 #2
TPS
Don,

Right click your solution and click "Build"

That will build your dll files.

Then copy your dll files to the webroot/bin folder and copy all of your
aspx, ascx etc files to the webroot/folders.

The server will recompile everything for you.

TPS.
"Don Wash" <do*@wash.com> wrote in message
news:u4****************@TK2MSFTNGP10.phx.gbl...
Hi There!

I'm just wondering what are the deployment issues with ASP.NET (VB.NET) ?
How do I deploy them to my hosting server? Do I just upload the dll files in the \bin directory or do I also upload the corresponding aspx files? What
about the Visual Studio .NET project files?

One issue I've came across is that when I move projects between computers or download samples off the Net, I need to re-compile the projects in-order to make them run properly. If that's the case, how do I recomplie them when I
upload them onto my web host? It seems impossible. But there sure got to be a way for it. Please advice.

Many Thanks,
Don

Nov 18 '05 #3
Hi!

Thanks, for the reply.

After I've copied everything onto the server (aspx, ascx..etc) and if i
change something in the one of the apsx files on the server, do I need to
recompile them manually or does IIS do it automatically?

Thanks again!

Don
"TPS" <tp*@tps.com> wrote in message
news:O2**************@TK2MSFTNGP09.phx.gbl...
Don,

Right click your solution and click "Build"

That will build your dll files.

Then copy your dll files to the webroot/bin folder and copy all of your
aspx, ascx etc files to the webroot/folders.

The server will recompile everything for you.

TPS.
"Don Wash" <do*@wash.com> wrote in message
news:u4****************@TK2MSFTNGP10.phx.gbl...
Hi There!

I'm just wondering what are the deployment issues with ASP.NET (VB.NET) ? How do I deploy them to my hosting server? Do I just upload the dll files
in
the \bin directory or do I also upload the corresponding aspx files?
What about the Visual Studio .NET project files?

One issue I've came across is that when I move projects between computers or
download samples off the Net, I need to re-compile the projects in-order

to
make them run properly. If that's the case, how do I recomplie them when

I upload them onto my web host? It seems impossible. But there sure got to

be
a way for it. Please advice.

Many Thanks,
Don


Nov 18 '05 #4
Hi Don,

You won't need to recompile the application unless you change something in
one of the code-behind files (i.e. the VB.NET code in your case) If you are
just changing the content of the .aspx files then this gets picked up
automatically and recompiled on the fly by the .NET Framework.

If you change something in one of the code behind files then you should
recompile the application on your development box and overwrite the dll
file(s) on the server with the new versions, along with any .aspx files you
may have changed in the process.

--
Steve Willcock, MCSD
http://www.willcockconsulting.com/
"Don Wash" <do*@wash.com> wrote in message
news:eC**************@tk2msftngp13.phx.gbl...
Hi!

Thanks, for the reply.

After I've copied everything onto the server (aspx, ascx..etc) and if i
change something in the one of the apsx files on the server, do I need to
recompile them manually or does IIS do it automatically?

Thanks again!

Don
"TPS" <tp*@tps.com> wrote in message
news:O2**************@TK2MSFTNGP09.phx.gbl...
Don,

Right click your solution and click "Build"

That will build your dll files.

Then copy your dll files to the webroot/bin folder and copy all of your
aspx, ascx etc files to the webroot/folders.

The server will recompile everything for you.

TPS.
"Don Wash" <do*@wash.com> wrote in message
news:u4****************@TK2MSFTNGP10.phx.gbl...
Hi There!

I'm just wondering what are the deployment issues with ASP.NET
(VB.NET)
? How do I deploy them to my hosting server? Do I just upload the dll files
in
the \bin directory or do I also upload the corresponding aspx files? What about the Visual Studio .NET project files?

One issue I've came across is that when I move projects between computers
or
download samples off the Net, I need to re-compile the projects
in-order to
make them run properly. If that's the case, how do I recomplie them
when I upload them onto my web host? It seems impossible. But there sure got

to be
a way for it. Please advice.

Many Thanks,
Don



Nov 18 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: wobbles | last post by:
Hi Everyone, I'm really struggling to get no-touch deployment to work well (if at all, in some cases). Can anyone recommend a good book on this topic? There seem to be a lot of blogs about...
0
by: Andy | last post by:
Hey All, I'm a beginner with VB.Dotnet Deployment and I'm a little confused about some very basic deployment issues . . . I've now created some core assemblies that will be used throughout all...
4
by: James | last post by:
I have a VB windows forms application that accesses a Microsoft Access database that has been secured using user-level security. The application is being deployed using No-Touch deployment. The...
11
by: Thom Little | last post by:
Create two ASP.NET applications. Run them on the development machine to make sure they are error free. Publish the fist application to the root of a remote webspace. Call a page and see that it...
4
by: Hardy Wang | last post by:
Hi all, In order to solve code-behind of global.asax problem, I removed the code from global.asax, and just leave one line "<%@ Application Language="C#" Inherits="Global"%>" in this file. Then I...
4
by: Zany | last post by:
I added a Web Deployment Project so I can create a debug, staging, and release version. Each set is compiled and saved in a separate folder under the csproj_deploy folder. All works fine. Here's...
2
by: MarkusJNZ | last post by:
Hi, we have an existing solution which contains a bunch of C# projects and one weployment project. Initially I did not have the web deployment project installed on my computer so I downloaded...
13
by: Matt Fielder | last post by:
First off, if this is better posted in another group that qualifies as a manged group, please let me know. I currently have an application written in VB.Net using MSDE as the database. Current...
3
by: =?Utf-8?B?RHVrZSAoQU4yNDcp?= | last post by:
I've added a web deployment project and want to use the config section replacement but I'm obviously not understanding something. I have set up an alternate appSettings file,...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.