摘要: "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" 阅读全文
posted @ 2012-11-03 19:49 shineme 阅读(473) 评论(0) 推荐(0) 编辑
摘要: 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, 阅读全文
posted @ 2012-10-30 11:43 shineme 阅读(4750) 评论(1) 推荐(1) 编辑
摘要: 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... 阅读全文
posted @ 2012-10-13 21:25 shineme 阅读(737) 评论(0) 推荐(0) 编辑
摘要: moneybrace.com/http://www.hecard.com.cn/ 阅读全文
posted @ 2012-10-13 16:56 shineme 阅读(325) 评论(1) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2012-10-13 16:44 shineme 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 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... 阅读全文
posted @ 2012-09-27 13:24 shineme 阅读(2171) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2012-09-23 11:15 shineme 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2012-09-22 22:04 shineme 阅读(3) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2012-09-17 18:37 shineme 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 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... 阅读全文
posted @ 2012-07-03 12:41 shineme 阅读(106760) 评论(13) 推荐(10) 编辑