Login
Register
Home
Applications
Consulting
Design
Business Links
Support
Contact
Knowledge Base
Content Management System
BannerAd Rotator
Business Directory
Restaurant Menu Manager
Custom Database Reporting
Distributor Locator
Application Screen Shots
Web
Site
Search
Search
Archives
C Sharp - C# (10)
..private void function() (2)
CraigsList (2)
CSS (2)
DNS (0)
DotNetNuke (19)
..Modules (6)
....Core Modules (3)
....Custom Modules (7)
..Resource Links (1)
E-Mail (2)
IIS (3)
Malware (1)
Microsoft SQL Server (9)
..SQL Scripts (3)
..SQL Server 2008 R2 (3)
..Stored Procedures (3)
Networking Problems (3)
Operating Systems (0)
..Windows 7 (3)
..Windows Server 2003 (1)
..Windows Server 2008 (2)
..Windows Vista (2)
..Windows XP (4)
PCI DSS Compliance (1)
Technology (139)
VbScript (2)
Web Design (3)
Web.Config (3)
Support
Knowledge Base
C Sharp - C#
May 17, 2012
Snippets
Current Articles
|
Archives
|
Search
C Sharp - C#
private void function()
14
Adding a Header Tag to a Custom DNN Module
DNN Expert
posted on March 14, 2012 15:21
string htmlHeaderTags = null; LiteralControl htmlHeaderCtrl = new LiteralControl(); htmlHeaderTags = "<base target=\"_self\">"; htmlHeaderCtr...
[Read the rest of this article...]
Posted in:
DotNetNuke
,
C Sharp - C#
,
Modules
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
06
Convert Money to Double
DNN Expert
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.Cur...
[Read the rest of this article...]
Posted in:
C Sharp - C#
,
Modules
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
19
DNN E-Mail Address Lookup
DNN Expert
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 {  ...
[Read the rest of this article...]
Posted in:
DotNetNuke
,
C Sharp - C#
,
Modules
,
Custom Modules
,
private void function()
Actions:
E-mail
|
Permalink
|
Comments (0)
19
Splitting a FullName field into a FirstName and LastName
DNN Expert
posted on January 19, 2012 05:35
public void NameSplit(string name) { if (name.Length > 0) { // Check for a comma if (name.IndexOf(",") >...
[Read the rest of this article...]
Posted in:
C Sharp - C#
,
private void function()
Actions:
E-mail
|
Permalink
|
Comments (0)
02
DNN States Dropdown List
DNN Expert
posted on January 02, 2012 07:31
Get a list of states using the DNN Lists public void GetDropDownList-States() { try { // Get State Dropdown from DNN List...
[Read the rest of this article...]
Posted in:
C Sharp - C#
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
05
valuePair String Split
DNN Expert
posted on April 05, 2011 14:16
string emailAddress = "email1@domain.com;address2@another.com;myaccount@somewhere.com"; string[] valuePair = emailAddress.Split(new char[] { ';' }); ...
[Read the rest of this article...]
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)
01
Populate a Credit Card Expiration Month and Year DropDownList
DNN Expert
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,...
[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
DNN Expert
posted on March 29, 2011 10:51
List files in a folder . . . private void ListFiles() { DirectoryI...
[Read the rest of this article...]
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)
27
How to replace carriage return with
DNN Expert
posted on August 27, 2010 09:27
Public string ReplaceWithBR(string target) { Regex regex = new Regex(@"(\r\n|\r|\n)+"); string newText = regex.Replace(target, "<br />...
[Read the rest of this article...]
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)
19
Date and Time
DNN Expert
posted on April 19, 2010 05:25
Get the date and time in C# vDate = Convert.ToString(System.DateTime.Today.Date.ToShortDateString()); vTime = Convert.ToString(System.DateTi...
[Read the rest of this article...]
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)
P.O. BOX 2342 ~ BREWSTER, MA 02631
PHONE & FAX: (508) 714-0678
Home
|
Applications
|
Consulting
|
Design
|
Business Links
|
Support
|
Contact
Copyright 2012 by Global Internet Business Solutions
Terms Of Use
Privacy Statement