Fork me on GitHub
摘要: declare @start int; declare @ends int; set @start=1; set @ends=49; while @start<=@ends begin set @start=@start+1 insert into tb_News(newstitle) values(@start); end 阅读全文
posted @ 2013-05-08 17:05 思考的大腿 阅读(195) 评论(0) 推荐(0) 编辑
摘要: nofollow标签通常有两种使用方法:1、将"nofollow"写在网页上的meta标签上,用来告诉搜索引擎不要抓取网页上的所有外部和包括内部链接。<meta name="robots” content="nofollow” />2、将"nofollow"放在超链接中,告诉搜索引擎不要抓取特定的链接。<a rel="external nofollow" href="url"><span>内容</span></a>3、nofollow标 阅读全文
posted @ 2013-05-08 10:03 思考的大腿 阅读(2057) 评论(0) 推荐(0) 编辑