Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只是我想问一下如何从 DNN 数据库中获取 pageID。
假设我的网站上有页面http://www.Website.com/pagename.aspx。我将查询哪些表和字段以从 DNN 数据库中获取页面 ID?
没有PageID,有TabID,如果你在数据库中做,你会使用
select tabId from tabs where tabname = 'pagename'
如果您正在开发模块,您的模块应该从 PortalModuleBase 继承,并且您将可以直接访问 TabId 属性。