I’ve been using app.Config and INI files to configure my applications but I wanted to make it more user-friendly. I’ve already encountered some applications ( most of them are java based ) that its configurations are via web interface ( I think the application is hosting jsp ). How can I do this on .net platform fast and easy?
Thanks for the inputs guys!
I’ll be implementing my own web server for this to resolve my problem. Sample web server
There is no way to do this “fast and easy”, as far as I know. You’re simply going to have to write a web-based interface to your configuration.
Sections in configuration files can be read as objects, which you could data bind to controls on a web form. If it’s your own configuration, then you can know ahead of time what it looks like, and what form to use.