what is needed on the webserver

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?
 
J

JD

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
 
J

Juan T. Llibre

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...
======================
 
M

Mark Rae

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
 

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