-1

Just I wanted to ask how can I get the pageID from the DNN database.

Say I have the page, http://www.Website.com/pagename.aspx, on my website. What table and fields would I query to get the Page ID from the DNN Database?

RacerNerd
  • 1,579
  • 1
  • 13
  • 31

1 Answers1

0

There is no PageID, there are TabIDs, if you're doing it in the database you would use

select tabId from tabs where tabname = 'pagename' 

If you're developing modules, your module should inherit from PortalModuleBase and you will have direct access to the TabId property.

Chris Hammond
  • 8,873
  • 1
  • 26
  • 34