ASP.NET实现数据采集
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-20
table"); foreach (HtmlElement tr in htmlTR) { try { //年龄 nl = tr.GetElementsByTagName("tr")[1].GetElementsByTagName("td") [1].InnerText; //性别 string XB_SG = tr.GetElementsByTagName("tr")[1].GetElementsByTagName("td") [3].InnerText; XB = XB_SG.Substring(0, 1); //身高 SG = XB_SG.Substring(11); //政治面貌 mm = tr.GetElementsByTagName("tr")[2].GetElementsByTagName("td") [1].InnerText; //民族 MZ = tr.GetElementsByTagName("tr")[2].GetElementsByTagName("td") [3].InnerText; //学历 XL = tr.GetElementsByTagName("tr")[3].GetElementsByTagName("td") [1].InnerText; //婚烟状况 HK = tr.GetElementsByTagName("tr")[3].GetElementsByTagName("td") [3].InnerText; //所学专业 ZY = tr.GetElementsByTagName("tr")[5].GetElementsByTagName("td") [1].InnerText; //工作经验 GZJY = tr.GetElementsByTagName("tr")[5].GetElementsByTagName("td") [3].InnerText; //在职单位 ZZDW = tr.GetElementsByTagName("tr")[6].GetElementsByTagName("td") [1].InnerText; //在职职位 ZZZW = tr.GetElementsByTagName("tr")[6].GetElementsByTagName("td") [3].InnerText; //工作经历 GZJY = tr.GetElementsByTagName("tr")[7].GetElementsByTagName("td") [1].InnerText; //要求月薪 YX = tr.GetElementsByTagName("tr")[9].GetElementsByTagName("td") [1].InnerText; //工作性质 GZXZ = tr.GetElementsByTagName("tr")[9].GetElementsByTagName("td") [3].InnerText; //求职意向 QZYX = tr.GetElementsByTagName("tr")[10].GetElementsByTagName("td") [1].InnerText; //具体职务 JTZW = tr.GetElementsByTagName("tr")[10].GetElementsByTagName("td") [3].InnerText; //期望工作地 QWGZD = tr.GetElementsByTagName("tr")[11].GetElementsByTagName("td") [1].InnerText; //教育情况,语言水平,技术专长 QT = tr.GetElementsByTagName("tr")[13].GetElementsByTagName("td") [1].InnerText; insert(); } catch { } } } catch { } } //将数据插入数据库 private void insert() { try { string str = "Provider=Microsoft.Jet.OleDb.4.0;Data Source=Data.mdb"; string sql = "insert into 人才信息 (姓名,年龄,性别,身高,政治面貌,民族,学历,婚烟 状况,所学专业,"; sql += "工作经验,在职单位,在职职位,工作经历,要求月薪,工作性质,求职意向,具体职务 ,期望工作地,其他) values "; sql += "(''" + XM + "''," + nl + ",''" + XB + "'',''" + SG + "'',''" + mm + "'',''" + MZ + "'',''" + XL + "'',''" + HK + "'',''" + ZY + "'',''" + GZJY + "'',''" + ZZDW + "'',''" + ZZZW + "'',"; sql += "''" + GZJY + "'',''" + YX + "'',''" + GZXZ + "'',''" + QZYX + "'',''" + JTZW + "'',''" + QWGZD + "'',''" + QT + "'')"; OleDbConnection con = new OleD |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于ASP.NET实现数据采集的所有评论