Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
01
SQL Function to Lookup DNN Profile Values
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 in:
DNN
,
SQL Scripts
,
Stored Procedures
Actions:
E-mail
|
Permalink
|
Comments (0)
11
Can't connect to shared network drive
posted on December 11, 2020 08:46
After the last Windows 10 update (1803), our five Windows 10 Pro computers which are in a WORKGROUP local network (no domain) keep loosing their conne...
[Read the rest of this article...]
Windows 10
,
mapped drive
Posted in:
Networking Problems
Actions:
E-mail
|
Permalink
|
Comments (0)
03
Getting Eastern Standard Time from Azure SQL
posted on November 03, 2020 11:20
Declare @todays_date Date set @todays_date = CAST(SYSDATETIMEOFFSET() AT TIME ZONE 'Eastern Standard Time' AS date) For example, if you want ...
[Read the rest of this article...]
Azure SQL GetDate()
Posted in:
Azure
,
Microsoft SQL Server
,
Azure SQL Database
Actions:
E-mail
|
Permalink
|
Comments (0)
21
Initializing a NotificationController in DNN 9
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 in:
DNN
,
Core Modules
,
Social
Actions:
E-mail
|
Permalink
|
Comments (0)
21
Azure Blob Storage Task TLS 1.2 Windows Server 2016 Datacenter
posted on October 21, 2020 05:24
Fix for Blob Storage Task failing due to: Microsoft.WindowsAzure.Storage.StorageException,Message=The remote server returned an error: (400) Bad Requ...
[Read the rest of this article...]
TLS 1.2
,
Azure Blob Storage Task
Actions:
E-mail
|
Permalink
|
Comments (0)
24
Show Custom DNN Error Message
posted on September 24, 2020 09:51
// ErrorMessage if (Request.QueryString["ErrorMessage"] != null) { lblFormMessage.Visible = true; ...
[Read the rest of this article...]
Custom DNN Module
Actions:
E-mail
|
Permalink
|
Comments (0)
23
Disable DNN Popup Windows
posted on September 23, 2020 06:19
UPDATE PortalSettings SET SettingValue = 'False' WHERE SettingName = 'EnablePopUps'
DNN Popup Windows
Posted in:
DNN
,
SQL Scripts
Actions:
E-mail
|
Permalink
|
Comments (0)
27
GridView CSS for Pagination
posted on January 27, 2020 11:22
<PagerStyle CssClass="pagination-ys" /> .pagination-ys { /*display: inline-block;*/ padding-left: 0; margin...
[Read the rest of this article...]
GridView PagerStyle
Posted in:
CSS
Actions:
E-mail
|
Permalink
|
Comments (0)
27
Create DNN List Using ListController()
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 in:
DNN
,
Modules
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
25
Dim objRoleController As New RoleController
posted on January 25, 2020 10:11
Dim objRoleController As New RoleController Dim arrRoles As String() = CType(objRoleController.GetUserRoles(Me.PortalId, Me.UserInfo.Username.ToString...
[Read the rest of this article...]
DNN
,
Ventrian
Posted in:
VbScript
Actions:
E-mail
|
Permalink
|
Comments (0)
Page 2 of 32
First
Previous
1
[2]
3
4
5
6
7
8
9
10
Next
Last