Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
Entries for 'JavaScript'
18
Add Javascript to a DNN Page header in a Custom Module
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 in:
DNN
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
20
Writing and Reading Cookies
posted on November 20, 2014 15:15
function SetCookie(cookieName, cookieValue, nDays) { var today = new Date(); var expire = new Date(); if (nDays == null || nDays == 0) nDa...
[Read the rest of this article...]
JavaScript
Actions:
E-mail
|
Permalink
|
Comments (0)