C Sharp - C#

Snippets


C Sharp - C#

 

NO Image:
19
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
19
public void NameSplit(string name) {  if (name.Length > 0)  {   // Check for a comma   if (name.IndexOf(",") >...

[Read the rest of this article...]

05
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#
01
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#
29
List files in a folder . . .     private void ListFiles()     {         DirectoryI...

[Read the rest of this article...]

Posted in: C Sharp - C#
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#
Page 6 of 7First   Previous   1  2  3  4  5  [6]  7  Next   Last