Custom Modules

Snippets


Custom Modules

DotNetNuke Custom Modules

NO Image:
24
protected void GridViewOrders_RowDataBound(object sender, GridViewRowEventArgs e) {     if (e.Row.RowType == DataControlRowType.DataRow) ...

[Read the rest of this article...]

18
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 in: DNN, Custom Modules
27
public void CreateList() { try { //create a placeholder entry - const string listName = "InventoryReportingType"; var listC...

[Read the rest of this article...]

ListController()
25
 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
23
private string GetDisplayName(int PortalId, int UserId) {     string UserDisplayName = "";     DotNetNuke.E...

[Read the rest of this article...]

DNN, DisplayName
02
Get a list of states using the DNN Lists public void GetDropDownListStates() {  try  {   // Get State Dropdown from DNN...

[Read the rest of this article...]

ListController()
26
public string CreatedByUserName { get { if (createdByUserName == null) { int portalId = PortalController.Instance.GetCurrentPortalSetti...

[Read the rest of this article...]

DNN UserController
24
Check if a DNN TrueFalse (bool) profile property exists and if it doesn't create a new one USE: CheckProfilePropertyExistsTrueFalse("Do...

[Read the rest of this article...]

DNN User Profile
11
In the designer.cs file OLD . . .  // protected global::DotNetNuke.UI.WebControls.DnnCssInclude DnnCssInclude1; NEW . . .  prote...

[Read the rest of this article...]

DnnCssInclude
26
// GET MODULE SETTINGS var mc = new ModuleController(); var mi = mc.GetModule(1534); var tSettings = mi.ModuleSettings;    &nbs...

[Read the rest of this article...]

Posted in: Custom Modules
Page 1 of 4First   Previous   [1]  2  3  4  Next   Last