public static DataSet GetDataSet(this string xmlString) { DataSet set = new DataSet(); try { StringReader input = new StringReader(xmlString); XmlTextReader reader = new
Continue reading
public static class AssemblyInfo { public static string BuildName; public static string BuildVersion; public static string BuildDate; static GlobalInfo() { var assembly =
Continue reading
public string EncodeBase64(string data) { try { var s = data.Trim().Replace(” “, “+”); if (s.Length % 4 > 0) s = s.PadRight(s.Length +
Continue reading
Web applications on Windows Servers are configured via command line or Internet Information Systems (IIS) Manager. Within IIS you can set up websites and
Continue reading