Interview Question in SQL Server Security
Interview Question :: What language should I use if I am to develop a web app that could be easily converted to a desktop app
Currently, I'm developping online training courses with different exercices (mainly based xhtml forms and flash movies). The content is all stored in a database. The data can easily be exported in an xml file.
I currently work with ASP, javascript and SQL Server to develop my projects. Often, we are ask to create a desktop version of the application. I took a look a previously converted web apps (on projects I didn't work on), and I don't want to do it that way. They created an installation cd for the app that configures IIS on the client's pc and then they run the application with their localhost. I really don't want to do that.
I tried to do an AJAX/XHTML version of the application, but with all the browsers security settings, i cannot be sure that it's gonna work for all users.
Now, what I'm looking at, is to create a java desktop application. If I was to let go ASP for JSP, would it be easier to convert the web-app to a desktop app? Or would it be as much of a pain than it already is?

Loading ...