help with first time with asp.net website

A

aboutjav.com

Hi,

I am learning asp.net and want to move my asp.net files to the web
hosting site with my ftp client. I've been following a book on how to
code the site and tested only with debug and my local host.

Questions

1. where are the files and a build to upload to the webserver?
2. What are the files?

Thanks
Edit/Delete Message
 
A

Alexey Smirnov

Hi,

I am learning asp.net and want to move my asp.net files to the web
hosting site with my ftp client. I've been following a book on how to
code the site and tested only with debug and my local host.

Questions

1. where are the files and a build to upload to the webserver?
2. What are the files?

Thanks
Edit/Delete Message

*.aspx, *ascx and if you have /bin directory (code-behind), then you
have to copy it too
 
A

aboutjav.com

Hi,

In visual studio .net, how do I specify the build to place all the
files in a bin folder. I could not find the .aspx files, only
the .ascx. I was hoping to do a rebuild and have all the files in a
folder to upload to the server.

THanks
 
A

aboutjav.com

Hi,

In visual studio .net, how do I specify the build to place all the
files in a bin folder. I could not find the .aspx files, only
the .ascx. I was hoping to do a rebuild and have all the files in a
folder to upload to the server.

THanks
 
A

Alexey Smirnov

Hi,

In visual studio .net, how do I specify the build to place all the
files in a bin folder. I could not find the .aspx files, only
the .ascx. I was hoping to do a rebuild and have all the files in a
folder to upload to the server.

THanks




- Show quoted text -

The /bin is a special directory in the server where all assemblies
(dlls) are located. When you build your solution, the code-behind is
compiled and assembled into dll in the /bin directory. When the
application is started ASP.NET loads the assembly from the /bin.

All other files *.ascx, *.aspx, web.config, etc. must be located
outside of that directory.

Deploying ASP.NET Applications
http://samples.gotdotnet.com/quickstart/aspplus/doc/deployment.aspx
 

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