摘要:
"Add new comment""Basic HTML code is allowed""HTML code is not allowed""Notify me when new comments are posted""Make Your Comment""Please Leave Your Comment Here" 阅读全文
摘要:
private static string GenerateSurname(){ string name = string.Empty; string[] currentConsonant; string[] vowels = "a,a,a,a,a,e,e,e,e,e,e,e,e,e,e,e,i,i,i,o,o,o,u,y,ee,ee,ea,ea,ey,eau,eigh,oa,oo,ou,ough,ay".Split(','); string[] commonConsonants = "s,s,s,s,t,t,t,t,t,n,n,r,l,d,sm, 阅读全文
摘要:
public static string StringTruncat(string oldStr, int maxLength, string endWith){ // 判断原字符串是否为空 if (string.IsNullOrEmpty(oldStr)) return oldStr + endWith; // 返回字符串的长度必须大于 1 if (maxLength < 1) throw new Exception("返回的字符串长度必须大于 [0] "); // 判断原字符串是否大于最大长度 if (oldStr.L... 阅读全文
摘要:
moneybrace.com/http://www.hecard.com.cn/ 阅读全文
该文被密码保护。 阅读全文
摘要:
private void btn_PLEnglishSingleInsert_Click(object sender, EventArgs e){ if ((this.txtb_FolderIn.Text == string.Empty) || !Directory.Exists(this.txtb_FolderIn.Text)) { MessageBox.Show("批量插入的文件夹路径错误!"); } else if ((this.txtb_FolderOut.Text == string.Empty) || !Directory.Exists(thi... 阅读全文
该文被密码保护。 阅读全文
摘要:
private string HttpPost(string Url, string postDataStr) { HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url); request.Method = "POST"; request.ContentType = "application/x-www-form-urlencoded"; request.ContentLength = Encoding.UTF8.GetB... 阅读全文