Reputation: 1779
I am developing a website in ASP.NET, C# and SQL Server 2008. My colleagues suggest that I should build an admin panel as one of the secured section of my website in one of my hosting server's directories that is password locked. But what I think it will be more secure if I built it as an application on my desktop PC that don't have access to any outsider by using any scripting language like JavaScript and all. But I am not able to predict what is more efficient and secure way. First one or the second one. Please tell.
Upvotes: 1
Views: 390
Reputation: 30045
Logically, the most efficient way has to be to extend the web app to include an admin area. That means you only have one application to maintain. Equally, if you were to build a desktop application, it will have to communicate with the web application, and presumably authenticate itself using, what..? A password, of course. So either way, you need to build a password protected area in the web site.
Upvotes: 1