Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
Entries for April 2011
27
Quick Table Backup - SELECT INTO
posted on April 27, 2011 06:01
Syntax: SELECT field1 [ , field2 ] , ... [ ] INTO newtable FROM source field1 Is a parameter that specifies the list of the fields that are to be r...
[Read the rest of this article...]
Posted in:
SQL Scripts
Actions:
E-mail
|
Permalink
|
Comments (0)
17
Add Domain Account as Local User Administrator
posted on April 17, 2011 11:59
Start > run > Type "control userpasswords2" Click Add Put in the username and domain Click Next Select the "other" radio button Select "Adm...
[Read the rest of this article...]
Posted in:
Networking Problems
,
Windows XP
Actions:
E-mail
|
Permalink
|
Comments (0)
13
Windows® XP File Association Fixes
posted on April 13, 2011 05:37
Malware these days can wreak havoc on your registry file associations. Here is a great resource for Windows® XP File Association Fixes from Doug ...
[Read the rest of this article...]
Malware
,
malicious software
Posted in:
Malware
,
Windows XP
Actions:
E-mail
|
Permalink
|
Comments (0)
10
DNN User Login report SQL script for DNN Reports Module
posted on April 10, 2011 13:27
Here's a great sql script to use for the DotNetNuke Reports Module: Select -- AU.Username, U.FirstName, U.L...
[Read the rest of this article...]
Posted in:
DNN
,
Core Modules
,
Microsoft SQL Server
,
SQL Scripts
Actions:
E-mail
|
Permalink
|
Comments (0)
05
valuePair String Split
posted on April 05, 2011 14:16
string emailAddress = "email1@domain.com;address2@another.com;myaccount@somewhere.com"; string[] valuePair = emailAddress.Split(new char[] { ';' }); f...
[Read the rest of this article...]
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)
05
DNN Remember Login Checkbox
posted on April 05, 2011 05:30
Enabling the "Remember Login" checkbox on your DotNetNuke web site requires a web.config change. If you want to make similar changes to your own site,...
[Read the rest of this article...]
Remember Me
Posted in:
DNN
,
Web.Config
Actions:
E-mail
|
Permalink
|
Comments (0)
01
Populate a Credit Card Expiration Month and Year DropDownList
posted on April 01, 2011 09:13
Populate a credit card expiration month DropDownList for (int i = 1; i <= 12; i++) { DateTime month = new DateTime(2011, i, 1)...
[Read the rest of this article...]
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)