Hi all,
Can we have a custom config file other than web.config in asp.net application and app.config in windows application?
Is .NET framework provides any way to access such config file programmatically?
regards,
Printable View
Hi all,
Can we have a custom config file other than web.config in asp.net application and app.config in windows application?
Is .NET framework provides any way to access such config file programmatically?
regards,
What is the format of the config file? Is it XML or other type? If it is XML I would look into using the XMLDocument class.
Hope that helps. :)
Nope, you will have to implement the config file yourself. one other way is to use XML as mentioned by clayk0heQuote:
Originally Posted by shethashish_a