My First Web

  • Thread starter Thread starter Jim Heavey
  • Start date Start date
J

Jim Heavey

Hello, I have been doing some volunteer work for my a club I was elected to
create a web site for them.

Today I moved all the stuff to the web hosting company.

I given to believe that when I moved the ASP.Net stuff up, all that I would
have to move is the contents of the bin folder. I found that when I keyed
in the URL, nothing showed up. If I moved my aspx pages up, then it did
recognize the webpage and it did seem to then execute the code in the bin
folder. It did not find my images, which I had defined in my project to
reside in the image folder. So do I have to move this folder up as well?

Thanks in advance for your assistance!!!!!!!!
 
off course you would have to do that, except if you rewrite the app to use
those as resources ...
the only thing you don't need to move is the code behind pages ... the aspx,
the web.config ...everything except .cs or .vb, the project and solution
files ...
 
The only thing in the BIN folder are the DLL files. The DLL files are
compiled versions of the .VB or .CS files.

The .ASCX, .ASMX and .ASPX files contain the actual text and markup. As you
discovered, those files and any images or documents that they reference need
to be copied as well.

You do not need the VB, CS, WEBINFO, VBPROJ, CSPROJ, or PDB files. Be sure
to compile in Release mode before copying the DLL files!
 
Back
Top