what is needed on the webserver

  • Thread starter Thread starter JD
  • Start date Start date
J

JD

I have a web site built with asp.net and I have been told that the only
files I need on the webserver are the files in the bin folder and aspx
files, I don't need the .vb or the .resx files on the webserver. Or do I
need them on the webserver?

And whatis a .resx file and what does it do?
 
thanks.


Kostadin Kostov said:
That's right! All you need is to deploy the .dll files which reside in the
bin directory, and the .aspx files. The code form the .vb or .cs files is
compiled in the .dlls

Regards,
Kostadin Kostov
 
Hmmm...

Maybe a few more files than those are needed.

The *.resx files certainly would be needed if there's any compiled
localization resources which are expected to work on the web server.

Also, *.ascx files are needed if any custom controls are used.

And, how about *.asmx files ? They should be uploaded, too.
And, surely, any *.ashx and *.soap files should be uploaded, too.

And, don't forget global.asax, web.config and any images you use.

:-)



Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================
 
All you need is to deploy the .dll files which reside in the bin
directory,
and the .aspx files.

Plus all the other required files, of course... :-)

*.ascx
*.asmx
Global.asax
Web.config

Plus all the other "support" files e.g. images, JavaScript includes,
cascading style sheets etc etc
 
Back
Top