04 2007 档案
成功必备的八个心态
摘要: 有这样的八个心态,等待你的必定是成功
成功必备的八个心态: 阅读全文
posted @ 2007-04-23 17:14 阿米 阅读(268) | 评论 (0) 编辑
.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阅读全文
posted @ 2007-04-20 09:58 阿米 阅读(898) | 评论 (0) 编辑
性格决定命运
摘要:   1个世纪以来,心理学家们一直在研究人的个性以预测人们的行为,也提出了各种不同的理论模型。其中有个模型在过去的10年中赢得了广泛的认可,它叫做“5大性格模式”。这5大性格模式特征包括:阅读全文
posted @ 2007-04-09 09:12 阿米 阅读(587) | 评论 (0) 编辑