4
I have a question regarding ASP.NET:
In the case of PHP when an application is placed on the server means to put the source code of the same. In the case of ASP.NET, (specifically C# with pages in .aspx), there is some form of use without exposure of the source code?
If the application is only in C# it is possible to generate the executable, but in the case of ASP.NET, it is possible to separate the working application (in the client, suppose) from the source code?
You can generate a Solution Publish.
– Marconi
In this case I am using free tools (Visual Studio). Is there this option? - I’ve actually already programmed in C# and I’m thinking about starting (would be a return) with ASP.NET.
– Anderson Brunel Modolon
I think so. Right click on top of your project. If it is Pusblish Web Site
– Marconi
You use Web Forms, correct?
– Intruso
Are you still starting a project or already have one ready/in progress? If you start, I suggest evaluating the use of MVC with ASP.NET, so all your logic is in the controllers that are in the DLL, only HTML content and little source code is available, in the case feathers
if
,for
,foreach
and no business logic.– Richard Dias