Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
07
SEARCH Skin Object Attributes
posted on July 07, 2012 07:09
The Search Skin Object has 3 important attributes: Attribute Values Default ...
[Read the rest of this article...]
Skin Object
Posted in:
DNN
,
Skin Objects
Actions:
E-mail
|
Permalink
|
Comments (0)
16
Google MX Records
posted on April 16, 2012 09:35
Enter the following MX records. You may not be able to enter the priority value exactly as it appears in the table below—if you can, make sure e...
[Read the rest of this article...]
E-Mail
Posted in:
E-Mail
Actions:
E-mail
|
Permalink
|
Comments (0)
14
Adding a Header Tag to a Custom DNN Module
posted on March 14, 2012 15:21
string htmlHeaderTags = null; LiteralControl htmlHeaderCtrl = new LiteralControl(); htmlHeaderTags = "<base target=\"_self\">"; htmlHeaderCtrl.T...
[Read the rest of this article...]
Posted in:
C Sharp - C#
,
DNN
,
Modules
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
06
Convert Money to Double
posted on February 06, 2012 10:15
Converting a textbox money field value ($1,250.00) to a double value . . . double MyDoubleValue = double.Parse(txtMoneyAmount.Text, NumberStyles.Curr...
[Read the rest of this article...]
double.Parse
,
money
Posted in:
C Sharp - C#
,
Modules
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
02
DNN Token Replacement
posted on February 02, 2012 05:36
DNN Token Replacement Engine usage. Token Replacement Example
Posted in:
Modules
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
28
HTML Entities Reference
posted on January 28, 2012 06:40
Character Name Number Description " " " ...
[Read the rest of this article...]
Posted in:
Web Design
Actions:
E-mail
|
Permalink
|
Comments (0)
26
How to extract e-mail addresses from a Word document or web page
posted on January 26, 2012 13:14
The search tool will work fine for this. Use the find routine (CTRL+F) to open the find dialog With the wildcards box checked and the highlight all f...
[Read the rest of this article...]
Word
,
E-Mail Addresses
,
Scraping
Actions:
E-mail
|
Permalink
|
Comments (0)
19
DNN E-Mail Address Lookup
posted on January 19, 2012 05:50
Check to verify if an e-mail address has been previously registered: public bool LookupEmail(string EmailAddress) { try { int ...
[Read the rest of this article...]
DNN User Account
Posted in:
C Sharp - C#
,
private void function()
,
DNN
,
Modules
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
19
Splitting a FullName field into a FirstName and LastName
posted on January 19, 2012 05:35
public void NameSplit(string name) { if (name.Length > 0) { // Check for a comma if (name.IndexOf(",") > 0) ...
[Read the rest of this article...]
Posted in:
C Sharp - C#
,
private void function()
Actions:
E-mail
|
Permalink
|
Comments (0)
11
Standard DotNetNuke CSS Classes
posted on January 11, 2012 08:15
Standard CSS classes used by DotNetNuke: Class Usage CommandButton Ju...
[Read the rest of this article...]
Posted in:
CSS
,
DNN
,
Modules
,
Core Modules
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
Page 13 of 32
First
Previous
8
9
10
11
12
[13]
14
15
16
17
Next
Last