Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
Entries for January 2012
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)