Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsHelpHelpDirect link to Help CategoryDirect link to Help Category
Previous
 
Next
New Post
1/30/2008 1:59 AM
 

I know how to link directly to tutorials in the Help module with the URL, but I wanted to link directly to specific Help Categories. The trouble I ran into was as I click on a category in the Help module the URL does not change. After an IM with Mr Beadle, he showed me how to link directly to categories in the Help module. Here's how:

http://www.dotnetnuke.com/default.aspx?tabid=787&helpculture=en-us&helpmodule=Text%2fHTML

This link above will send you directly to the DotNetNuke® page where the Help Module is located (compliments of Lorraine Young) and load the Text/HTML category. Philip explained that all I have to do is set the helpmodule = [name] field from the Help_Category table. Very cool!! Now I can provide dynamic links to Help categories. Thank you, Philip.

Here is my contribution (for what is worth):
I wanted to see a list of ready made URL links to my various Help categories in my portal to reference so I could insert the hyperlink where I needed them throughout my portal. So I put a Reports module on an page that only I can see and loaded this SQL statement:

SELECT     TOP (100) PERCENT dbo.Tabs.TabID, dbo.Tabs.TabName, dbo.Help_Category.Name AS [Help Category],
                      '<a target=_"blank" href="/Default.aspx?tabid=' + CAST(dbo.TabModules.TabID AS varchar(8))
                      + '&helpmodule=' + dbo.Help_Category.Name + '">Help</a>' AS URL
FROM         dbo.Help_Category INNER JOIN
                      dbo.TabModules ON dbo.Help_Category.ModuleID = dbo.TabModules.ModuleID INNER JOIN
                      dbo.Tabs ON dbo.TabModules.TabID = dbo.Tabs.TabID INNER JOIN
                      dbo.Portals ON dbo.Tabs.PortalID = dbo.Portals.PortalID INNER JOIN
                      dbo.Modules ON dbo.TabModules.ModuleID = dbo.Modules.ModuleID AND dbo.Portals.PortalID = dbo.Modules.PortalID
WHERE     (dbo.Modules.IsDeleted = 0) AND (dbo.Tabs.IsDeleted = 0) AND (dbo.Portals.PortalID = 7)
ORDER BY dbo.Tabs.TabID, [Help Category]

Now I have a list of ready made direct links to my Help Categories. Change the PortalID = [your PortalID]. 


 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsHelpHelpDirect link to Help CategoryDirect link to Help Category


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out