What files do I copy when deploying by FTP?

H

HK

I have a blank site on a remote server with no Front Page Server Extensions.
I need to deploy a web service (one asmx page) and one web page (aspx), both
of which use one class file (class.vb).

What are the bare minimum files I need to FTP to that server for it to work?
I also don't want to deploy source code (the VS built-in deploy button that
uses FP extensions has an option to deploy the bare minimum but I don't know
what that equates to in FTP terms). I want to deploy only compiled code.

What do I do?
 
M

macduder83

you need the bin folder and the asmx and aspx. the class file doesnt
really do anything since it all runs off a compiled dll which is in the
bin folder.
 
H

HK

What about the 3 global.* files?
What about the web.config?
What about the .resx files?

thanks
 
J

Jason Brown [MSFT]

Don't upload the resx files
Don't upload the .cs files
Upload web.config
 

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