摘要:
string Today = DateTime.Now.ToString("yyyy-MM-dd dddd",new System.Globalization.CultureInfo("zh-CN"));______________2009-12-09 星期三 阅读全文
摘要:
Test for the .NET Framework 3.5 阅读全文
摘要:
private void button1_Click(object sender, EventArgs e) { string str ="http://www.7y8.com/V/ip.asp"; MessageBox.Show("访问的IP地址是:"+getIPAddr(GetResponseStr(str))); } //使用代理访问 private string GetResponseStr(string str) { HttpWebRequest r... 阅读全文
摘要:
保存!public sealed class EncryptUtils { #region Base64加密解密 /// /// Base64加密 /// /// 需要加密的字符串 /// public static string Base64Encrypt(string input) { return Base64Encrypt(input, new UTF8Encoding()); } /// /// ... 阅读全文