aspx.vb files

  • Thread starter Thread starter Don
  • Start date Start date
D

Don

Is it necessary to have the aspx.vb (Sourcecode) files on
the server or is the application.dll enough to make my apps
working on server? I don't want to realease my source code!

Thanks
Don
 
No you do not need to copy your .vb files to the web server. The DLL
contains all the necessary code for the application to function properly.

HTH,

Lou
 
You only need the .dll file on a production web server. All the source
code in your code-behind file gets compiled into the .dll file.

Tommy,
 
Back
Top