Hello,
can someone explain to me how to access viewsettings.ascx once the module is installed? when i go to Settings for the viewguesbook, i see the settings for allowing anonymous and Moderate settings from settings.ascx.
How do i access the viewsettings.ascx ? I have a feelings it has something to do with guestbookvb.dnn file. here's what i have for the dnn file:
Code:
<dotnetnuke version="3.0" type="Module">
<folders>
<folder>
<name>GuestbookVB</name>
<friendlyname>GuestbookVB</friendlyname>
<foldername>GuestbookVB</foldername>
<modulename>GuestbookVB</modulename>
<description>A GuestbookVB module</description>
<version>01.00.02</version>
<businesscontrollerclass>GuestbookVB.GuestbookVBController</businesscontrollerclass>
<compatibility></compatibility>
<modules>
<module>
<friendlyname>GuestbookVB</friendlyname>
<cachetime>0</cachetime>
<controls>
<control>
<src>DesktopModules/GuestbookVB/ViewGuestbookVB.ascx</src>
<type>View</type>
<helpurl></helpurl>
</control>
<control>
<key>Edit</key>
<title>Edit Content</title>
<src>DesktopModules/GuestbookVB/EditGuestbookVB.ascx</src>
<type>Edit</type>
<helpurl></helpurl>
</control>
<control>
<key>Settings</key>
<title>GuestbookVB Settings</title>
<src>DesktopModules/GuestbookVB/Settings.ascx</src>
<type>Edit</type>
<helpurl></helpurl>
</control>
<control>
<key>ViewSettings</key>
<title>GuestbookVB View Settings</title>
<src>DesktopModules/GuestbookVB/ViewSettings.ascx</src>
<type>Edit</type>
<helpurl></helpurl>
</control>
</controls>
</module>
<module>
<friendlyname>Sign Guestbook VB</friendlyname>
<cachetime>0</cachetime>
<controls>
<control>
<key></key>
<src>DesktopModules/GuestbookVB/SignGuestbook.ascx</src>
<supportsPartialRendering>false</supportsPartialRendering>
<title>Sign Guestbook Settings</title>
<type>Edit</type>
<iconfile />
<helpUrl />
<viewOrder>0</viewOrder>
</control>
</controls>
</module>
</modules>
<files>
<file>
<name>GuestbookVB.dll</name>
</file>
<file>
<name>ViewGuestbookVB.ascx</name>
</file>
<file>
<name>SignGuestbook.ascx</name>
</file>
<file>
<name>EditGuestbookVB.ascx</name>
</file>
<file>
<name>ViewSettings.ascx</name>
</file>
<file>
<name>Settings.ascx</name>
</file>
<file>
<path>App_LocalResources</path>
<name>SignGuestbook.ascx.resx</name>
</file>
<file>
<path>App_LocalResources</path>
<name>ViewGuestbookVB.ascx.resx</name>
</file>
<file>
<path>App_LocalResources</path>
<name>EditGuestbookVB.ascx.resx</name>
</file>
<file>
<path>App_LocalResources</path>
<name>ViewSettings.ascx.resx</name>
</file>
<file>
<path>App_LocalResources</path>
<name>Settings.ascx.resx</name>
</file>
<file>
<name>01.00.00.SqlDataProvider</name>
</file>
<file>
<name>Uninstall.SqlDataProvider</name>
</file>
</files>
</folder>
</folders>
</dotnetnuke>