Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
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)
29
DirectoryInfo Object GetFiles() - List Files in Folder
posted on March 29, 2011 10:51
List files in a folder . . . private void ListFiles() { DirectoryInfo...
[Read the rest of this article...]
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)
26
DotNetNuke Project and Technical Documentation
posted on March 26, 2011 06:02
DotNetNuke is the leading open source web content management system (CMS) and application development framework for Microsoft .NET. DotNetNuke Pr...
[Read the rest of this article...]
Posted in:
Resource Links
Actions:
E-mail
|
Permalink
|
Comments (0)
17
Finding the Port of MS SQL Named Instance
posted on March 17, 2011 06:12
When running a named instance of MS SQL the instance will run on a port other than the usual port 1433. To determine the port you can use th...
[Read the rest of this article...]
Posted in:
Microsoft SQL Server
,
SQL Server 2008 R2
,
Stored Procedures
Actions:
E-mail
|
Permalink
|
Comments (0)
07
Disabling SSL v2 and weak SSL ciphers
posted on March 07, 2011 06:10
Disclaimer: The items mentioned in the following article involve making changes to your server’s registry. Incorrectly modifying your server’s registr...
[Read the rest of this article...]
Posted in:
IIS
,
PCI DSS Compliance
Actions:
E-mail
|
Permalink
|
Comments (0)
03
HTTP 301 Redirect in ASP-VBScript
posted on March 03, 2011 05:30
In order to redirect an out-of-print web page to another location, return the HTTP 301 status code and a location header in the HTTP response of the d...
[Read the rest of this article...]
Posted in:
VbScript
Actions:
E-mail
|
Permalink
|
Comments (0)
01
Removing Conflicting Versions of Java
posted on March 01, 2011 08:29
A user getting a Javascript error on the Comcast home page and unable to load the Comcast web-based e-mail page. It turns out there were conflict...
[Read the rest of this article...]
Posted in:
Technology
Actions:
E-mail
|
Permalink
|
Comments (0)
25
Host Headers & SSL
posted on January 25, 2011 09:01
Configuring SSL Host Headers in Microsoft IIS Background Host headers can be used to host multiple secure web sites on one IP address. However, the sa...
[Read the rest of this article...]
IIS
,
SSL
,
Host Headers
Posted in:
IIS
Actions:
E-mail
|
Permalink
|
Comments (0)
09
Farming Leads Import
posted on January 09, 2011 07:26
INSERT [dbo].[Farming] ( [First Name] [Last Name] Title [Mailing Address] [Mailing City] [Mailing Province/State] [Mailing Postal/ZIP] WebAddress Ph...
[Read the rest of this article...]
Posted in:
Microsoft SQL Server
Actions:
E-mail
|
Permalink
|
Comments (0)
03
SQL to Access Data from a User Defined Table in DNN
posted on January 03, 2011 04:59
SQL Query SELECT R.UserDefinedRowId, F.FieldTitle, D.FieldValue FROM dbo.UserDefinedRows R LEFT OUTER JOIN dbo.UserDefinedData D on R.UserDefined...
[Read the rest of this article...]
Posted in:
DNN
Actions:
E-mail
|
Permalink
|
Comments (0)
Page 16 of 32
First
Previous
11
12
13
14
15
[16]
17
18
19
20
Next
Last