Deploy VB or ASP.net to servers

Niek909

Newcomer
Joined
Oct 31, 2003
Messages
3
I want to create a standard software application. The software can be installed on servers of any company that wants to use the software. I don't want those companies to be able to see my source code.
It would be nice if the software can run in a browser, without any executable on the client side.
Is it possible to use ASP.net or VB.net in this way?
 
As far as I have read about ASP.net, is that ASP.net code is not compiled into DLL's, so the server administrator can see my code. Should I use VB.net to create compiled objects and call them in my aspx pages?
 
ASP.Net code does get compiled to MSIL which is compiled to actual machine code the first time the page is accessed.
The raw source code does not need to be deployed to the server.
 
If you leave your server-side code in-line (at the top of your aspx page) then of course people will see it, the recommended method is to use Code-behind and as PlausiblyDamp pointed out "the code DOES get complied".

So the only things you need to copy(deploy) onto the server are these files:
aspx
web.config
BIN folder with the DLL files therein
CSS (optional)
 
Back
Top