I am new to DNN. I have a class which contains the following line of code
string sample=base.settings["NAME"].toString();
value of the base.settings["NAME"] is already configured. Where do I change this value. That is I want the location of this value(some thing like web.config in .net). Is there any way to change this value without using coding?
Thanks in Advance
Settings are typically controlled in the ModuleSettings or TabModuleSettings.
Your Settings control would typically be a web form which allowed for the configuration of the settings. In the CodeBehind you would "save" the settings using the controllers in DNN.
Accessing the settings is then as easy as referencing
To be safe you can always "check" to see if the setting exists first