Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
Entries for January 2020
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)
25
DNN SendMail Attachments
posted on January 25, 2020 09:11
C# declare empty string array for Attachments string[] arr = new string[] {};string[] arr = new string[] {};string[] attachments = new string[]...
[Read the rest of this article...]
Posted in:
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
23
DNN Get User DisplayName
posted on January 23, 2020 07:59
private string GetDisplayName(int PortalId, int UserId) { string UserDisplayName = ""; DotNetNuke.Enti...
[Read the rest of this article...]
DNN
,
DisplayName
Posted in:
C Sharp - C#
,
private void function()
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
22
Token Replacement
posted on January 22, 2020 06:44
public string FixTokens(string _myOriginal, string _myToken, string _myReplacement) { try { string _ReturnValue = ""...
[Read the rest of this article...]
C#
,
token replacement
Posted in:
private void function()
Actions:
E-mail
|
Permalink
|
Comments (0)
19
Get DNN User Roles for Dropdown List
posted on January 19, 2020 08:20
public void GetRoles() { DotNetNuke.Security.Roles.RoleController rc = new DotNetNuke.Security.Roles.RoleController(); var myRoles = rc.G...
[Read the rest of this article...]
GetRoles()
,
DNN 9
Posted in:
C Sharp - C#
,
private void function()
Actions:
E-mail
|
Permalink
|
Comments (0)
19
SSRS: Commonly Used Date/Time Functions
posted on January 19, 2020 06:13
The list below is a few simple functions which I've come across for generating various dates based on the current date/time (using the Now() funct...
[Read the rest of this article...]
SSRS
,
Date/Time Functions
Posted in:
SSRS
Actions:
E-mail
|
Permalink
|
Comments (0)
10
Enabling the File Upload Function in DNN CKEditor
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 in:
DNN
,
Resource Links
Actions:
E-mail
|
Permalink
|
Comments (0)
02
DNN States Dropdown List
posted on January 02, 2020 07:31
Get a list of states using the DNN Lists public void GetDropDownListStates() { try { // Get State Dropdown from DNN Lists ...
[Read the rest of this article...]
ListController()
Posted in:
C Sharp - C#
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)