Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
15
Pivot Query for Ventrian Property Agent
posted on December 15, 2014 08:22
I had a need for getting a property details for a SSR report and came up with the following store procedure . . . I thought it might be useful t...
[Read the rest of this article...]
Ventrian Property Agent
Posted in:
Modules
,
Custom Modules
,
Microsoft SQL Server
,
SQL Scripts
,
SQL Server 2008 R2
,
Stored Procedures
Actions:
E-mail
|
Permalink
|
Comments (0)
01
Remove href values when printing
posted on December 01, 2014 08:43
@media print { a[href]:after { content: none !important; } }
Printing
Posted in:
CSS
Actions:
E-mail
|
Permalink
|
Comments (0)
26
Log to DNN Event Viewer
posted on November 26, 2014 07:57
DotNetNuke.Services.Log.EventLog.EventLogController objEventLog = new DotNetNuke.Services.Log.EventLog.EventLogController(); objEventL...
[Read the rest of this article...]
DNN Event Viewer
Posted in:
C Sharp - C#
,
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)
17
Force page break in HTML/ASP when opening and printing multiple records
posted on November 17, 2014 13:22
Place the following code in the HEAD of the html: P.pagebreakhere {page-break-before: always} Then place the following code in the BODY of the html...
[Read the rest of this article...]
Posted in:
CSS
Actions:
E-mail
|
Permalink
|
Comments (0)
24
Get a List of all Databases on a SQL Server Installation
posted on October 24, 2014 05:57
Get a list of the database names and database size in a sql server instance using tsql: EXEC sp_databases
sp_databases
Posted in:
Microsoft SQL Server
,
SQL Server 2008 R2
Actions:
E-mail
|
Permalink
|
Comments (0)
08
SQL Timeout on Custom DNN module
posted on October 08, 2014 15:33
Try running . . . . exec sp_updatestats;
SQL
,
DNN
Posted in:
DNN
,
Microsoft SQL Server
,
SQL Server 2008 R2
Actions:
E-mail
|
Permalink
|
Comments (0)
30
jQuery Modal in DNN
posted on September 30, 2014 09:38
function OpenDialog(url, height, width, title) { var vurl = url; var vheight = height; var vwidth = width; var vtitle...
[Read the rest of this article...]
DNN
,
jQuery
,
modal
Posted in:
DNN
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
27
Get DNN User Profile Property Value
posted on September 27, 2014 07:10
using DotNetNuke.Entities.Profile; string _value = GetUserProfilePropertyValue("MyCustomProfileField").ToString(); public string GetUserProfil...
[Read the rest of this article...]
DNN
,
ProfileProperty
Posted in:
DNN
,
Modules
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
23
Set Custom Page Name in DNN
posted on September 23, 2014 05:34
public void SetPageName(string PageName) { try { DotNetNuke.Framework.CDefault CustomPageName = (DotNe...
[Read the rest of this article...]
DNN
Posted in:
DNN
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
Page 9 of 32
First
Previous
4
5
6
7
8
[9]
10
11
12
13
Next
Last