|
|
DNN
www.DNNSoftware.com DNN DotNetNuke
NO
Image:
posted on July 30, 2024 10:02
Fix here . ..
install of DNN 9.9.1 on an Azure app service. The wizard completed successfully and then the site showed a 503 service unav...
[Read the rest of this article...]
posted on April 18, 2024 05:55
How to Add Javascript to a DNN Page header section in a Custom Module
protected override void OnInit(EventArgs e)
{
 ...
[Read the rest of this article...]
JavaScript,
Page Header Section
posted on February 20, 2024 15:06
Clear all page level skins in a Portal
update {databaseOwner}{objectQualifier}Tabs
set skinsrc=null
where SkinSrc is not null
and PortalID=0
...
[Read the rest of this article...]
posted on February 26, 2021 13:46
Noteworthy Changes in v9.8.0+ - Optional Telerik Removal
The major highlight for this release is that we removed all our dependencies on the Telerik ...
[Read the rest of this article...]
posted on February 01, 2021 15:20
CREATE FUNCTION GIBS_GetProfileElement
(
@userID as int,
@portalID as int,
@ProfilePropertyName as nvarchar(100)
)
RETURNS nvarchar(4000) AS
BEGIN
...
[Read the rest of this article...]
posted on October 21, 2020 07:28
You can use NotificationsController.Instance.SendNotification method to send notifications.
Here is an example:
public void AddHtml...
[Read the rest of this article...]
DNN,
Notification Controller
posted on September 23, 2020 06:19
UPDATE PortalSettings
SET SettingValue = 'False'
WHERE SettingName = 'EnablePopUps'
DNN Popup Windows
posted on January 27, 2020 08:52
public void CreateList()
{
try
{
//create a placeholder entry -
const string listName = "InventoryReportingType";
var listControll...
[Read the rest of this article...]
ListController()
posted on January 10, 2020 07:06
https://dnnsupport.dnnsoftware.com/hc/en-us/articles/360010074593-Enabling-the-File-Upload-Function-in-CKEditor
[Read the rest of this article...]
CKEditor
posted on December 26, 2019 14:03
public string CreatedByUserName
{
get
{
if (createdByUserName == null)
{
int portalId = PortalController.Instance.GetCurrentPortalSettings()....
[Read the rest of this article...]
DNN UserController