Register
Login
Register
Login
Search
Design
Consulting
DNN Apps
Content Management System
Custom DNN Modules
Business Directory
Restaurant Menu Manager
Custom Database Reporting
Distributor Locator
Gift Certificates
Date Time Calculator
Screenshot Gallery
TimeTracker
QR Code Maker
Surveillance Systems
Business Links
Support
Knowledge Base
Contact
C Sharp - C#
Support
/
Knowledge Base
/
C Sharp - C#
Snippets
Current Articles
|
Archives
|
Search
private void function()
06
Check if an image exists - substitute missing images
posted on December 06, 2012 07:03
public string get_image(string product_ID) { string functionReturnValue = null; HttpWebRequest req = default(HttpWebRequest); re...
[Read the rest of this article...]
HttpWebRequest
,
Images
,
GetResponse()
Posted in:
C Sharp - C#
,
private void function()
Actions:
E-mail
|
Permalink
|
Comments (0)
23
Regex - Insert a space after a comma
posted on July 23, 2012 09:42
String = "MyWord,AnotherWord,TheEnd" String = Regex.Replace(String, "(?<=,)(?!\\s)", " "); Value of the string is now . . . . . String = "...
[Read the rest of this article...]
Regex
Posted in:
C Sharp - C#
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\">"; htmlHeaderCtr...
[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.Cur...
[Read the rest of this article...]
double.Parse
,
money
Posted in:
C Sharp - C#
,
Modules
,
Custom Modules
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 {  ...
[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(",") >...
[Read the rest of this article...]
Posted in:
C Sharp - C#
,
private void function()
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[] { ';' }); ...
[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
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
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
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...]
Functions
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)
Page 4 of 5
First
Previous
1
2
3
[4]
5
Next
Last
Categories
Azure (3)
C Sharp - C# (41)
..private void function() (11)
CSS (17)
DNN (64)
..Modules (23)
....Core Modules (6)
....Custom Modules (39)
..Resource Links (2)
..Skin Objects (2)
..Social (1)
E-Mail (4)
IIS (3)
Malware (1)
Microsoft SQL Server (18)
..Azure SQL Database (5)
..SQL Scripts (19)
..SQL Server 2008 R2 (11)
..SQL Server 2014 (1)
..Stored Procedures (6)
Networking Problems (7)
nopCommerce (3)
Operating Systems (1)
..Windows 7 (3)
..Windows Server 2003 (1)
..Windows Server 2008 (2)
..Windows Server 2012 (2)
..Windows Vista (2)
..Windows XP (4)
PCI DSS Compliance (1)
SSRS (2)
Technology (139)
VbScript (3)
Web Design (7)
Web.Config (5)
Archives
2025 (10)
2024 (12)
2023 (1)
2022 (1)
2021 (2)
2020 (16)
2019 (11)
2018 (8)
2017 (14)
2016 (14)
2015 (4)
2014 (26)
2013 (11)
2012 (15)
2011 (30)
2010 (157)