04 2007 档案
.NET2.0抓取网页全部链接(转)
摘要: protected void Button1_Click(object sender, EventArgs e)
{
TextBox2.Text = "";
string web_url = this.TextBox1.Text;//"http://blog.csdn.net/21aspnet/"
string all_code = "";
HttpWebRequest all_codeRequest = (HttpWebRequest)WebRequest.Create(web_url);
WebResponse all_codeResponse = all_codeRequest.GetResponse();
StreamReader the_Reader = new StreamReader(all_codeResponse.GetResponseStream());
all_code = the
阅读全文
性格决定命运
摘要: 1个世纪以来,心理学家们一直在研究人的个性以预测人们的行为,也提出了各种不同的理论模型。其中有个模型在过去的10年中赢得了广泛的认可,它叫做“5大性格模式”。这5大性格模式特征包括:
阅读全文
浙公网安备 33010602011771号