Here is another one for helping hand's.Its about Dnn's Setting page. I want to change the tab Title.is there any easy solution for that i search about it ; but i come up with empty hands.
Asked
Active
Viewed 977 times
0

Frank James
- 157
- 2
- 5
- 15
1 Answers
1
This is typically handled by your RESX file (language resources) for Settings.ascx
the string you need is ControlTitle_settings.Text
and can be found in /app_localresources/settings.ascx.resx within your module directory.
You can see an example at https://dnnsimplearticle.codeplex.com/SourceControl/latest#cs/App_LocalResources/Settings.ascx.resx
If you don't have the SOURCE for the module you can use the DNN Language Editor, admin/languages, and find the module in the folder list on the left.

Chris Hammond
- 8,873
- 1
- 26
- 34
-
thank you Chris. but i have multiple setting pages so where i need to change title for other setting pages or i need to add multiple keys in same resx file. – Frank James Nov 08 '13 at 06:20
-
The Tab title is specific to the Settings control being loaded. – Chris Hammond Nov 09 '13 at 04:34