-
ASP.net File Secuitry
hi to all
What is the Security issu in Asp.net files.
Suppose i need to be host my application in clients
webservers i have to give original files..?
if u say Yes then what is the advantage of asp.net?
can't we make exe or something else like vb?
Thanks
-
ASP.NET is different from Classic ASP in its programming model, among other things
It supports a object-oriented approach and is thus compiled.
You can create ASP.NET pages in 2 ways.
1) One of a scriptable version using inline code
2) One of a compiled version to be stored in the clients virtual folder in their web server. Make sure its marked as an Web Application. Store the executable (myWebPages.dll) in the bin folder and have the Index.aspx page call the initialization process. This method will be (more or less) secure.
So, to answer you questions, there are many many advantages ASP.NET has over classic ASP
See more resources on asp.net, dotnet247.com and dotnetjunkies.com