|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
在CSDN里搜索一下“初学”两字,竟有三百余篇帖子(也许更多)。有些帖子说,有了asp的基础,只要15天就能很熟悉了,我甚感自己的愚钝。更多帖子是向大家请教初学者适合看书。两个多月的时间(当然平常杂事比较多。privatestaticstringConvertToAbsoluteUrls(stringhtml,UrirelativeLocation){
IHTMLDocument2doc=newHTMLDocumentClass();
doc.write(newobject[]{html});
doc.close();
foreach(IHTMLAnchorElementanchorindoc.links){
IHTMLElementelement=(IHTMLElement)anchor;
stringhref=(string)element.getAttribute("href",2);
if(href!=null){
Uriaddr=newUri(relativeLocation,href);
anchor.href=addr.AbsoluteUri;
}
}
foreach(IHTMLImgElementimageindoc.images){
IHTMLElementelement=(IHTMLElement)image;
stringsrc=(string)element.getAttribute("src",2);
if(src!=null){
Uriaddr=newUri(relativeLocation,src);
image.src=addr.AbsoluteUri;
}
}
stringret=doc.body.innerHTML;
returnret;
}
Java欺骗了我们那么多年,如今的多核时代,我认为它气数已尽! |
|