help with first time with asp.net website

  • Thread starter Thread starter aboutjav.com
  • Start date Start date
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
 
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
 
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
 
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
 
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
 
Back
Top