宗是那么wwWfocustt不尽人意 英文的,难不成还能是focusttcOm更该了

博客分类:
激动万分,跳转到了主页面了,HOHO。以下是纯正的草稿代码,
这世界上还有人能看懂么?
package endual.jsoup.client3;
import java.io.BufferedR
import java.io.IOE
import java.io.InputS
import java.io.InputStreamR
import java.net.URI;
import java.net.URISyntaxE
import java.util.ArrayL
import java.util.L
import java.util.L
import org.apache.http.H
import org.apache.http.HttpE
import org.apache.http.HttpR
import org.apache.http.NameValueP
import org.apache.http.ProtocolV
import org.apache.http.StatusL
import org.apache.http.client.HttpC
import org.apache.http.client.entity.UrlEncodedFormE
import org.apache.http.client.methods.*;
import org.apache.http.client.utils.URIU
import org.apache.http.client.utils.URLEncodedU
import org.apache.http.impl.client.DefaultHttpC
import org.apache.http.message.BasicNameValueP
import org.apache.http.protocol.HTTP;
import org.apache.http.util.EntityU
import org.jsoup.J
import org.jsoup.nodes.A
import org.jsoup.nodes.D
import org.jsoup.nodes.E
import org.jsoup.select.E
import com.sun.jndi.toolkit.url.U
* 200页面客户端请求已经成功相应了
* 301永久重定向某个链接
* 302临时重定向到某个链接
* 404要寻找的页面暂时的没有存在
* @author Endual
public class DictSpider {
public static void main(String[] args) throws Exception {
* 执行登录过程
* @param user
* @param pwd
* @param debug
* @throws IOException
* @throws Exception
static void login() throws IOException, Exception {
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("http://passport.redhome.cc/user/login");
post.setHeader("User-Agent",
"Mozilla/5.0 (Windows NT 5.1) " +
"AppleWebKit/535.11 (KHTML, like Gecko) " +
"Chrome/17.0.963.83 " +
"Safari/535.11");
String login_type = "username" ;
String stu_no = "********登录用户名*******************" ;
String password = "********登录密码****************" ;
String cookietime = "0" ;
String btn_submit = "%E7%99%BB%E5%BD%95" ;
//登录表单的信息
List&NameValuePair& qparams = new ArrayList&NameValuePair&();
qparams.add(new BasicNameValuePair("login_type", login_type));
qparams.add(new BasicNameValuePair("stu_no", stu_no));
qparams.add(new BasicNameValuePair("password", password));
qparams.add(new BasicNameValuePair("cookietime", cookietime));
qparams.add(new BasicNameValuePair("btn_submit", btn_submit));
UrlEncodedFormEntity params = new UrlEncodedFormEntity(qparams, "UTF-8");
post.setEntity(params);
//相当于按了下确定登录的按钮,也就是浏览器调转了
HttpResponse response = client.execute(post);
//这里最好验证下当前浏览器有没有调转,重定向等等,但是这边没有做
HttpEntity entity = response.getEntity();
System.out.println(entity.getContentType().getElements()[0]) ;
String entityMsg = EntityUtils.toString(entity) ;
System.out.println(entityMsg);
String url = post.getURI().toString() ;
System.out.println(url);
Header[] headers = post.getAllHeaders() ;
for (int i=0; i & headers. i++) {
Header msg = headers[i] ;
String msgName = msg.getName() ;
System.out.println(msgName);
// HttpEntity en = post.getEntity() ;
StatusLine lines = response.getStatusLine() ;
ProtocolVersion pv = lines.getProtocolVersion() ;
String protocol =
pv.getProtocol() ;
System.out.println(protocol);
//取得协议
Locale locale = response.getLocale() ;
String country = locale.getCountry() ;
System.out.println(country);
String displayCountry = locale.getDisplayCountry() ;
System.out.println(displayCountry);
String language = locale.getDisplayLanguage() ;
System.out.println(language);
String displayname =
locale.getDisplayName()
System.out.println(displayname);
String dispalyVariant = locale.getDisplayVariant() ;
System.out.println(dispalyVariant);
String variant = locale.getVariant() ;
System.out.println(variant);
Header firstHeader = response.getFirstHeader("location") ;
System.out.println(firstHeader.getValue()) ;
Header[] xheaders = response.getAllHeaders() ;
for (int i=0; i & xheaders. i++) {
Header msg = xheaders[i] ;
String msgName = msg.getValue();
System.out.println(msgName);
String reasonPhrase = lines.getReasonPhrase() ;
System.out.println(reasonPhrase);
int statueCode = lines.getStatusCode() ;
System.out.println(statueCode);
HttpEntity resEntity = response.getEntity() ;
InputStream inputStream = resEntity.getContent();
System.out.println("---------======----------======------");
String entityMsgx = EntityUtils.toString(entity) ;
System.out.println(entityMsgx);
System.out.println("---------======----------======------");
HttpGet get = new HttpGet("http://passport.redhome.cc/user");
HttpResponse responsex = client.execute(get);
System.out.println(responsex.getStatusLine());
HttpEntity entityx = responsex.getEntity();
String entityMsgxy = EntityUtils.toString(entityx) ;
System.out.println(entityMsgxy);
System.out.println("---------======----------======------");
//Document doc = Jsoup.connect(entityMsgxy).get() ; //连接
Document doc = Jsoup.parse(entityMsgxy) ;
String msg = doc.html() ;//获取原生页
System.out.println(msg);
//获取所有的a
Elements el =
doc.getElementsByTag("a") ;
Element et = el.get(8);
Attributes attributes = et.attributes() ;
String chenweiUrl = attributes.get("href") ;
System.out.println("---------======-----6-----======------");
System.out.println(chenweiUrl);
System.out.println("---------======-----6-----======------");
int attrSize = attributes.size() ;
System.out.println(attrSize);
String etText = et.text() ;
System.out.println(etText);
String etHtml = et.html() ;
System.out.println(etHtml);
int el_size = el.size() ;
System.out.println(el_size);
String url2 = "http://passport.redhome.cc" + chenweiU
System.out.println(url2);
HttpGet get1 = new HttpGet(url2);
HttpResponse responsex1 = client.execute(get1);
System.out.println(responsex1.getStatusLine());
HttpEntity entityx1 = responsex1.getEntity();
String entityMsgxy1 = EntityUtils.toString(entityx1) ;
System.out.println(entityMsgxy1);
//Document doc = Jsoup.connect(entityMsgxy).get() ; //连接
Document doc1 = Jsoup.parse(entityMsgxy1) ;
String msg1 = doc1.html() ;//获取原生页
System.out.println(msg1);
//获取所有的a
Elements el1 =
doc1.getElementsByTag("a") ;
System.out.println(el1.size()) ;
Element et1 = el1.get(0);
Attributes attributes1 = et1.attributes() ;
String chenweiUrl1 = attributes1.get("href") ;
System.out.println("---------======-----6-----======------");
System.out.println(chenweiUrl1);
System.out.println("---------======-----6-----======------");
HttpGet get2 = new HttpGet(chenweiUrl1);
get2.setHeader("User-Agent",
"Mozilla/5.0 (Windows NT 5.1) " +
"AppleWebKit/535.11 (KHTML, like Gecko) " +
"Chrome/17.0.963.83 " +
"Safari/535.11") ;
HttpResponse responsex2 = client.execute(get2);
// Thread.sleep(1000 * 10) ;
// System.out.println(responsex2.getStatusLine());
StatusLine sl3 = responsex2.getStatusLine() ;
int xrxe = sl3.getStatusCode() ;
System.out.println(xrxe);
HttpEntity entityx2 = responsex2.getEntity();
System.out.println(entityx2);
Header[] headers = responsex.getAllHeaders() ;
for (int i=0; i & headers. i++) {
String headerMsg = headers[i].getValue() ;
System.out.println(headerMsg);
if (entityx2 != null) {
//String entityMsgxy2 = EntityUtils.toString(entityx2) ;
// System.out.println(entityMsgxy2);
EntityUtils.consume(entityx2) ;
EntityUtils.consume(entityx2) ;
//EntityUtils.consume(entityx2) ;
HttpGet get44 = new HttpGet("http://bbs.redhome.cc/");
get44.setHeader("User-Agent",
"Mozilla/5.0 (Windows NT 5.1) " +
"AppleWebKit/535.11 (KHTML, like Gecko) " +
"Chrome/17.0.963.83 " +
"Safari/535.11") ;
HttpResponse responsex244 = client.execute(get44);
HttpEntity entityx2xx = responsex244.getEntity();
System.out.println("xxx" + responsex244);
// StatusLine sl34 = responsex244.getStatusLine() ;
String entityMsgxxx = EntityUtils.toString(entityx2xx, "GBK") ;
System.out.println("******************************************************");
System.out.println(entityMsgxxx);
Document doc2 = Jsoup.parse(entityMsgxxx) ;
System.out.println(doc2.html()) ;
Jsoup作为解析引擎,仿佛人游走在浏览器中。
---------======----------======------
---------======----------======------
HTTP/1.1 200 OK
&!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&
&html xmlns="http://www.w3.org/1999/xhtml"&
&meta http-equiv="Content-Type" content="text/ charset=utf-8" /&
&title&红色家园通行证--首页&/title&
&link rel="stylesheet" type="text/css" href="/style/style.css" /&
&link rel="stylesheet" type="text/css" href="/style/global.css" /&
&link rel="stylesheet" type="text/css" href="/style/shadowbox.css" /&
&script type="text/javascript" src="/js/jquery.js"&&/script&
&script type="text/javascript" src="/js/shadowbox.js"&&/script&
&script type="text/javascript"&
$(document).ready(function(){
Shadowbox.init({
player: ["html"]
&div class="wrapper01"&
&div class="logo"&
&a href="http://bbs.redhome.cc"&&img src="/images/logo.jpg" /&&/a&
&div class="top_nav"&
&li&&a href="/user/logout"&注销&/a&&/li&
&li&&a href="/help.html" rel="width=700;height=600title=通行证帮助"&帮助&/a&&/li&
&li&&a href="/admin"&后台登陆&/a&&/li&
&div class="float_right index_mainbox"&
&div class="bg_box"&
&div class="daohang"&
&li&&a href="/user" id="dangqian"&通行证首页&/a&&/li&
&li&&a href="/role"&论坛角色设置&/a&&/li&
&li&&a href="/user/edit"&个人资料修改&/a&&/li&
&li&&a href="/user/logout"&注销登陆&/a&&/li&
&div class="neirong"&
&div class="neirong_left"&
&div class="neirong_left"&
&div class="jianju"&
&p class="hyci"&&span class="name"&chenwei&/span&&span class="wel_word"&&您好,欢迎您登录家园通行证&/span&&/p&
&div class="gongneng"&
&div class="jianju"&
&p&&span class="bold"&论坛服务:&/span&&点击链接登录您的论坛帐号:&br /&
&a href="/role/loging/id/qdgXb60uynTD1aFlW20Z0vUUMwe69reeBSZIKxragnQI8S96FyHGEaTtpPxtQver" target="_blank" class="name red" title="点击账号登录"&chenwei&/a&
&div class="neirong_right"&
&h3&公告:&/h3&
&p&&a target=_blank href="http://acm.hdu.edu.cn/forum/read.php?tid=16052"&关于学生证及火车优惠卡补办、冲磁的通知&/a&&/p&&p&&a target=_blank href="http://acm.hdu.edu.cn/forum/read.php?tid=1.28-关于 2010年元旦放假安排的通知&/a&&/p&&p&&a target=_blank href="http://newcms.redhome.cc/view.php?tid=21815&cid=204"&学年第2学期选课通知&/a&&/p&&p&&a target=_blank href="http://jwc.hdu.edu.cn/tzgg/ArticleShow.asp?ArticleID=397"&网上学评教的通知&/a&&/p&&p&&a target=_blank href="http://jwc.hdu.edu.cn/tzgg/ArticleShow.asp?ArticleID=398"&大学英语四六级考试通知&/a&&/p&
&h3&新闻动态&/h3&
&script type="text/javascript" src="http://www.redhome.cc/index.php?m=dbsource&c=call&a=get&id=2"&&/script&
&div class="clear"&&/div&
&div class="just_bg"&&/div&
&div class="mainbox_bottombg"&&/div&
&div class="gonggao01"&&a target=_blank href="http://go.redhome.cc/2011training"&&img src="http://newcms.redhome.cc/attachment/e343.jpg" alt="2011军训专题" /&&/a&&/div&
&div class="clear"&&/div&
&div class="index_footer"&
&p&Passport v1.0 Beta for &a href="http://www.redhome.cc"&Redhome&/a&&/p&
&p&Copyright &
redhome.cc&/p&
&p&All rights reserved&/p&
---------======----------======------
&!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&
&html xmlns="http://www.w3.org/1999/xhtml"&
&meta http-equiv="Content-Type" content="text/ charset=utf-8" /&
&title&红色家园通行证--首页&/title&
&link rel="stylesheet" type="text/css" href="/style/style.css" /&
&link rel="stylesheet" type="text/css" href="/style/global.css" /&
&link rel="stylesheet" type="text/css" href="/style/shadowbox.css" /&
&script type="text/javascript" src="/js/jquery.js"&&/script&
&script type="text/javascript" src="/js/shadowbox.js"&&/script&
&script type="text/javascript"&
$(document).ready(function(){
Shadowbox.init({
player: ["html"]
&div class="wrapper01"&
&div class="logo"&
&a href="http://bbs.redhome.cc"&&img src="/images/logo.jpg" /&&/a&
&div class="top_nav"&
&li&&a href="/user/logout"&注销&/a&&/li&
&li&&a href="/help.html" rel="width=700;height=600title=通行证帮助"&帮助&/a&&/li&
&li&&a href="/admin"&后台登陆&/a&&/li&
&div class="float_right index_mainbox"&
&div class="bg_box"&
&div class="daohang"&
&li&&a href="/user" id="dangqian"&通行证首页&/a&&/li&
&li&&a href="/role"&论坛角色设置&/a&&/li&
&li&&a href="/user/edit"&个人资料修改&/a&&/li&
&li&&a href="/user/logout"&注销登陆&/a&&/li&
&div class="neirong"&
&div class="neirong_left"&
&div class="neirong_left"&
&div class="jianju"&
&p class="hyci"&&span class="name"&chenwei&/span&&span class="wel_word"&&您好,欢迎您登录家园通行证&/span&&/p&
&div class="gongneng"&
&div class="jianju"&
&p&&span class="bold"&论坛服务:&/span&&点击链接登录您的论坛帐号:&br /& &/p&
&li& &a href="/role/loging/id/qdgXb60uynTD1aFlW20Z0vUUMwe69reeBSZIKxragnQI8S96FyHGEaTtpPxtQver" target="_blank" class="name red" title="点击账号登录"&chenwei&/a& &/li&
&div class="neirong_right"&
&h3&公告:&/h3&
&p&&a target="_blank" href="http://acm.hdu.edu.cn/forum/read.php?tid=16052"&关于学生证及火车优惠卡补办、冲磁的通知&/a&&/p&
&p&&a target="_blank" href="http://acm.hdu.edu.cn/forum/read.php?tid=1.28-关于 2010年元旦放假安排的通知&/a&&/p&
&p&&a target="_blank" href="http://newcms.redhome.cc/view.php?tid=21815&cid=204"&学年第2学期选课通知&/a&&/p&
&p&&a target="_blank" href="http://jwc.hdu.edu.cn/tzgg/ArticleShow.asp?ArticleID=397"&网上学评教的通知&/a&&/p&
&p&&a target="_blank" href="http://jwc.hdu.edu.cn/tzgg/ArticleShow.asp?ArticleID=398"&大学英语四六级考试通知&/a&&/p&
&h3&新闻动态&/h3&
&script type="text/javascript" src="http://www.redhome.cc/index.php?m=dbsource&c=call&a=get&id=2"&&/script&
&div class="clear"&&/div&
&div class="just_bg"&&/div&
&div class="mainbox_bottombg"&&/div&
&div class="gonggao01"&
&a target="_blank" href="http://go.redhome.cc/2011training"&&img src="http://newcms.redhome.cc/attachment/e343.jpg" alt="2011军训专题" /&&/a&
&div class="clear"&&/div&
&div class="index_footer"&
&p&Passport v1.0 Beta for &a href="http://www.redhome.cc"&Redhome&/a&&/p&
&p&Copyright &
redhome.cc&/p&
&p&All rights reserved&/p&
---------======-----6-----======------
/role/loging/id/qdgXb60uynTD1aFlW20Z0vUUMwe69reeBSZIKxragnQI8S96FyHGEaTtpPxtQver
---------======-----6-----======------
http://passport.redhome.cc/role/loging/id/qdgXb60uynTD1aFlW20Z0vUUMwe69reeBSZIKxragnQI8S96FyHGEaTtpPxtQver
HTTP/1.1 200 OK
&!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&
&html xmlns="http://www.w3.org/1999/xhtml"&
&meta http-equiv="Content-Type" content="text/ charset=utf-8" /&
&meta http-equiv="refresh" content="2.5; url=http://bbs.redhome.cc/api/uc.php?time=&code=62a0eiSprd5%2FW0eU5FL%2Bmt7nfuwX2jhW4MPjRUhcYTlnBOmP66jCpxcmZGgOzc4z5aSXkKa6mK69ghbb14F0Q6ml7t7cGy6SNGCPZdVHrz9Ko5wmBIIjo6O8xj6geWdeVDv7%2FTKCSsh9yOBwg5r5Wnu6478QTJRZ6Z7ZVQstT9ME" /&
&title&红色家园通行证--&/title&
&link rel="stylesheet" type="text/css" href="/style/style.css" /&
&link rel="stylesheet" type="text/css" href="/style/global.css" /&
&div class="wrapper02"&
&div class="title"&&h1&家园通行证——跳转信息&/h1&&/div&
&div class="tishi"&
&p&欢迎回到家园论坛&/p&
&p&&a href="http://bbs.redhome.cc/api/uc.php?time=&code=62a0eiSprd5%2FW0eU5FL%2Bmt7nfuwX2jhW4MPjRUhcYTlnBOmP66jCpxcmZGgOzc4z5aSXkKa6mK69ghbb14F0Q6ml7t7cGy6SNGCPZdVHrz9Ko5wmBIIjo6O8xj6geWdeVDv7%2FTKCSsh9yOBwg5r5Wnu6478QTJRZ6Z7ZVQstT9ME"&正在验证您的登录信息,请稍候……&/a&&/p&
&script type="text/javascript" src="http://bbs.redhome.cc/api/uc.php?time=&code=62a0eiSprd5%2FW0eU5FL%2Bmt7nfuwX2jhW4MPjRUhcYTlnBOmP66jCpxcmZGgOzc4z5aSXkKa6mK69ghbb14F0Q6ml7t7cGy6SNGCPZdVHrz9Ko5wmBIIjo6O8xj6geWdeVDv7%2FTKCSsh9yOBwg5r5Wnu6478QTJRZ6Z7ZVQstT9ME" reload="1"&&/script&
&!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&
&html xmlns="http://www.w3.org/1999/xhtml"&
&meta http-equiv="Content-Type" content="text/ charset=utf-8" /&
&meta http-equiv="refresh" content="2.5; url=http://bbs.redhome.cc/api/uc.php?time=&code=62a0eiSprd5%2FW0eU5FL%2Bmt7nfuwX2jhW4MPjRUhcYTlnBOmP66jCpxcmZGgOzc4z5aSXkKa6mK69ghbb14F0Q6ml7t7cGy6SNGCPZdVHrz9Ko5wmBIIjo6O8xj6geWdeVDv7%2FTKCSsh9yOBwg5r5Wnu6478QTJRZ6Z7ZVQstT9ME" /&
&title&红色家园通行证--&/title&
&link rel="stylesheet" type="text/css" href="/style/style.css" /&
&link rel="stylesheet" type="text/css" href="/style/global.css" /&
&div class="wrapper02"&
&div class="title"&
&h1&家园通行证——跳转信息&/h1&
&div class="tishi"&
&p&欢迎回到家园论坛&/p&
&p&&a href="http://bbs.redhome.cc/api/uc.php?time=&code=62a0eiSprd5%2FW0eU5FL%2Bmt7nfuwX2jhW4MPjRUhcYTlnBOmP66jCpxcmZGgOzc4z5aSXkKa6mK69ghbb14F0Q6ml7t7cGy6SNGCPZdVHrz9Ko5wmBIIjo6O8xj6geWdeVDv7%2FTKCSsh9yOBwg5r5Wnu6478QTJRZ6Z7ZVQstT9ME"&正在验证您的登录信息,请稍候……&/a&&/p&
&script type="text/javascript" src="http://bbs.redhome.cc/api/uc.php?time=&code=62a0eiSprd5%2FW0eU5FL%2Bmt7nfuwX2jhW4MPjRUhcYTlnBOmP66jCpxcmZGgOzc4z5aSXkKa6mK69ghbb14F0Q6ml7t7cGy6SNGCPZdVHrz9Ko5wmBIIjo6O8xj6geWdeVDv7%2FTKCSsh9yOBwg5r5Wnu6478QTJRZ6Z7ZVQstT9ME" reload="1"&&/script&
---------======-----6-----======------
http://bbs.redhome.cc/api/uc.php?time=&code=62a0eiSprd5%2FW0eU5FL%2Bmt7nfuwX2jhW4MPjRUhcYTlnBOmP66jCpxcmZGgOzc4z5aSXkKa6mK69ghbb14F0Q6ml7t7cGy6SNGCPZdVHrz9Ko5wmBIIjo6O8xj6geWdeVDv7%2FTKCSsh9yOBwg5r5Wnu6478QTJRZ6Z7ZVQstT9ME
---------======-----6-----======------
org.apache.http.conn.BasicManagedEntity@2ce908
Thu, 29 Mar :02 GMT
text/ charset=utf-8
keep-alive
timeout=20
PHP/5.3.10-pl0-gentoo
Thu, 19 Nov :00 GMT
no-store, no-cache, must-revalidate, post-check=0, pre-check=0
******************************************************
&!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&
&html xmlns="http://www.w3.org/1999/xhtml"&
&meta http-equiv="Content-Type" content="text/ charset=gb2312" /&
&title& 家园论坛 - 杭州电子科技大学论坛 - 杭州电子科技大学官方论坛&/title&
&meta name="generator" content="Discuz! 7.2" /&
&meta name="keywords" content="杭电论坛,杭州电子科技大学,杭电,杭电招生,历年分数,高考,高招,杭电高考,杭电新生,杭电新生论坛,杭州电子科技大学论坛,新生咨询," /&
&meta name="description" content=" 家园论坛 红色家园论坛是杭州电子科技大学官方论坛,我们的论坛致力营造温暖的网上校园生活论坛,杭电家园论坛在大家的支持和关心下家园论坛不断成长,已经逐步发展成为杭电最具影响力的论坛。在这里你们可以充实生活,学习管理,寻找信息,探求学问,与志同道合之人对屏长谈。" /&
&meta name="MSSmartTagsPreventParsing" content="True" /&
&meta http-equiv="MSThemeCompatible" content="Yes" /&
&meta http-equiv="x-ua-compatible" content="ie=9" /&
&link rel="archives" title="家园论坛" href="http://bbs.redhome.cc/archiver/" /&
&link rel="alternate" type="application/rss+xml" title="家园论坛" href="http://bbs.redhome.cc/rss.php?auth=ca82xWS1R1m4wZBvIbt78gU7So8gXJLq6FANeG%2BKz53ekn5Op77GttKdA5E" /&
&link rel="stylesheet" type="text/css" href="forumdata/cache/style_14_common.css?fp9" /&
&link rel="stylesheet" type="text/css" href="forumdata/cache/scriptstyle_14_index.css?fp9" /&
&script type="text/javascript"&var STYLEID = '14', IMGDIR = 'templates/redhome09_dz7.2/images', VERHASH = 'fp9', charset = 'gb2312', discuz_uid = 98445, cookiedomain = '', cookiepath = '/', attackevasive = '0', disallowfloat = 'login|register', creditnotice = '1|论坛币|,3|金币|', gid = parseInt('0'), fid = parseInt('0'), tid = parseInt('0')
&script src="forumdata/cache/common.js?fp9" type="text/javascript"&&/script&
&body id="index" onkeydown="if(event.keyCode==27)"&
&div id="append_parent"&&/div&
&div id="ajaxwaitid"&&/div&
&div class="help"&
&h1&问题咨询&/h1&
&div class="help_content"&
&li&&a href="http://weibo.com/hduredhome"&微博留言&/a&&/li&
&li&&a href="http://bbs.redhome.cc/viewthread.php?tid=504206&extra=page%3D1"&账号服务&/a&&/li&
&li&&a href="http://bbs.redhome.cc/thread--1.html"&联系我们&/a&&/li&
&script src="http://freshman.redhome.cc/js/jquery.min.js" type="text/javascript"&&/script&
&script type="text/javascript"&
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery(".help").mouseover(function(){
jQuery(".help_content").css("display","inline");
jQuery(".help").mouseout(function(){
jQuery(".help_content").css("display","none");
&div id="header"&
&div class="wrap s_clear"&
&h2&&a href="index.php" title="家园论坛"&&img src="templates/redhome09_dz7.2/images/logo.jpg" alt="家园论坛" border="0" /&&/a& &a href="http://bbs.redhome.cc/index.php" style="display:width:184height:55position:margin-left:-183 z-index:999;background:#000;filter:alpha(opacity=0);-moz-opacity:0;opacity: 0" title="家园论坛"&&/a& &/h2&
&div id="umenu"&
&cite&&a href="space.php?uid=98445" class="noborder"&chenwei&/a&&/cite&
&span class="pipe"&|&/span&
&a id="myprompt" href="notice.php" class="new" onmouseover="showMenu({'ctrlid':this.id})"&提醒&/a&
&span id="myprompt_check"&&/span&
&a href="pm.php" id="pm_ntc" target="_blank"&短消息&/a&
&a id="task_ntc" href="task.php" target="_blank"&论坛任务&/a&
&span class="pipe"&|&/span&
&a href="memcp.php"&个人中心&/a&
&a href="logging.php?action=logout&formhash=2e4ea235"&退出&/a&
&div id="menu"&
&li class="menu_1"&&a href="index.php" hidefocus="true" id="mn_index"&论坛&/a&&/li&
&li class="menu_2"&&a href="search.php" hidefocus="true" id="mn_search"&搜索&/a&&/li&
&li class="menu_8" id="ijy88j" onmouseover="showMenu({'ctrlid':this.id})"&&a href="#" hidefocus="true" class="dropmenu"&应用&/a&&/li&
&li class="menu_4"&&a href="faq.php" hidefocus="true" id="mn_faq"&帮助&/a&&/li&
&li class="menu_7"&&a href="http://bbs.redhome.cc/search.php?srchfrom=87000&searchsubmit=yes" hidefocus="true" id="mn_search_1"&查看新帖&/a&&/li&
&script type="text/javascript"&
var currentMenu = $('mn_index') ? $('mn_index') : $('mn_index');
currentMenu.parentNode.className = 'current';
&div id="myprompt_menu" style="display:none" class="promptmenu"&
&div class="promptcontent"&
&ul class="s_clear"&
&li&&a id="prompt_pm" href="pm.php?filter=newpm" target="_blank"&私人消息 (7)&/a&&/li&
&li style="display:none"&&a id="prompt_announcepm" href="pm.php?filter=announcepm" target="_blank"&公共消息 (0)&/a&&/li&
&li style="display:none"&&a id="prompt_task" href="task.php?item=doing" target="_blank"&论坛任务 (0)&/a&&/li&
&li style="display:none"&&a id="prompt_systempm" href="notice.php?filter=systempm" target="_blank"&系统消息 (0)&/a&&/li&
&li style="display:none"&&a id="prompt_friend" href="notice.php?filter=friend" target="_blank"&好友消息 (0)&/a&&/li&
&li style="display:none"&&a id="prompt_threads" href="notice.php?filter=threads" target="_blank"&帖子消息 (0)&/a&&/li&
&li style="display:none"&&a id="prompt_mynotice" href="userapp.php?script=notice" target="_blank"& (0)&/a&&/li&
&li style="display:none"&&a id="prompt_myinvite" href="userapp.php?script=notice&action=invite" target="_blank"& (0)&/a&&/li&
&!--*topmargin add by archer top*--&
&div class="headbox"&
&table cellspacing="0" cellpadding="0" style="width:100%;"&
&td style="width:195px"&
&div class="head_con1"&
&div id="ad_headerbanner"&&/div&
&/div&&/td&
&td style="width:230"&
&div class="head_con2"&
&h3&家园公告&/h3&
&div class="head_con21"&
&/div&&/td&
&div class="head_con3"&
&h3&最新主题&/h3&
&div class="head_con31"&
&li&&em class="con3_lastreply"&meaning&/em&&em class="forum_titile"&&a href="forum-22-1.html"&闲聊酒吧&/a&&/em& &a href="viewthread.php?tid=582708" title="杜甫很忙,你知道么?"&杜甫很忙,你知道么?&/a&&/li&
&li&&em class="con3_lastreply"&小情绪&/em&&em class="forum_titile"&&a href="forum-180-1.html"&杭电问问&/a&&/em& &a href="viewthread.php?tid=582707" title="求一首在学校放了好久的歌曲名"&求一首在学校放了好久的歌曲名&/a&&/li&
&li&&em class="con3_lastreply"&Aaron_hzq&/em&&em class="forum_titile"&&a href="forum-11-1.html"&学生市场&/a&&/em& &a href="viewthread.php?tid=582706" title="出kindle 3 3g 710"&出kindle 3 3g 710&/a&&/li&
&li&&em class="con3_lastreply"&方小杰&/em&&em class="forum_titile"&&a href="forum-191-1.html"&毕业大卖场&/a&&/em& &a href="viewthread.php?tid=582704" title="低价出售ipad!有图!"&低价出售ipad!有图!&/a&&/li&
&li&&em class="con3_lastreply"&苏小米&/em&&em class="forum_titile"&&a href="forum-125-1.html"&飞扬三月女生节&/a&&/em& &a href="viewthread.php?tid=582695" title="女生节"&女生节&/a&&/li&
&/div& &/td&
&td style="width:100"&
&div class="head_con4"&
&h3&今日发帖排行&/h3&
&div class="head_con41"&
&li& &em class="con4_value"&58&/em&&em class="con4_name"&1.&a href="space.php?uid=120247" target="_blank"&再见小时候&/a&&/em&&/li&
&li& &em class="con4_value"&52&/em&&em class="con4_name"&2.&a href="space.php?uid=121227" target="_blank"&坏痞子&/a&&/em&&/li&
&li& &em class="con4_value"&31&/em&&em class="con4_name"&3.&a href="space.php?uid=104708" target="_blank"&Rainstone&/a&&/em&&/li&
&li& &em class="con4_value"&31&/em&&em class="con4_name"&4.&a href="space.php?uid=111902" target="_blank"&alone2000&/a&&/em&&/li&
&li& &em class="con4_value"&25&/em&&em class="con4_name"&5.&a href="space.php?uid=121004" target="_blank"&火炎焱燚&/a&&/em&&/li&
&/div& &/td&
&div id="ad_text"&&/div&
&div id="wrap" class="wrap with_side s_clear"&
&a id="sidebar_img" href="javascript:;" onclick="sidebar_collapse(['打开边栏', '关闭边栏']);" class="collapsed_no"& 关闭边栏 &/a&
&div class="main"&
&div class="content"&
&div class="mainbox list"&
&span class="headactions"& &img id="category_210_img" src="templates/redhome09_dz7.2/images/collapsed_no.gif" title="收起/展开" alt="收起/展开" onclick="toggle_collapse('category_210');" /& &/span&
&h3&&span&推荐版块&/span&&/h3&
&table id="category_210" summary="category210" cellspacing="0" cellpadding="0" style=""&
&tbody id="forum216" class="normal_list"&
&th class="new"& &a href="forum-216-1.html"&&img style="float: margin-right: 10px" src="http://bbs.redhome.cc/attachments/month_4d7e3221.jpg" align="left" alt="" border="0" /&&/a&
&div class="left"&
&h2&&a href="forum-216-1.html" style="color: #FF3A22;"&快眼看杭电&/a& &em& (今日: &strong&9&/strong&)&/em& &/h2&
&p&校园的美丽不只有风景,生活中的人、事、物更是美丽的源泉。&/p&
&p&版主: &a class="notabs" href="space.php?username=%CE%A2%B9%E2"&微光&/a&&/p&
&/div& &/th&
&td class="forumnums"& &em&91&/em& / 863 &/td&
&td class="forumlast"& &p&&a href="redirect.php?tid=582705&goto=lastpost#lastpost"&杭电女生节形象大使旗袍宣传片&/a&&/p& &cite& &a href="space.php?username=xuexp"&xuexp&/a& - &span title=" 18:15"&5&分钟前&/span&&/cite& &/td&
&tbody id="forum125" class="normal_list"&
&th class="new"& &a href="forum-125-1.html"&&img style="float: margin-right: 10px" src="images/forum/nsj.jpg" align="left" alt="" border="0" /&&/a&
&div class="left"&
&h2&&a href="forum-125-1.html" style="color: #FF28DD;"&飞扬三月女生节&/a& &em& (今日: &strong&2&/strong&)&/em& &/h2&
&p&飞扬的三月,轻盈、灵动、秀美、青春、智慧充满杭电校园。&/p&
&p&版主: &a class="notabs" href="space.php?username=%BA%FA%C2%DC%B2%B7%D4%F5%C3%B4%C1%CB"&胡萝卜怎么了&/a&&/p&
&/div& &/th&
&td class="forumnums"& &em&578&/em& / 13176 &/td&
&td class="forumlast"& &p&&a href="redirect.php?tid=580031&goto=lastpost#lastpost"&组队观看女生节晚会[hdu]&/a&&/p& &cite& &a href="space.php?username=mydc"&mydc&/a& - &span title=" 17:54"&27&分钟前&/span&&/cite& &/td&
&tbody id="forum73" class="normal_list"&
&th class="new"& &a href="forum-73-1.html"&&img style="float: margin-right: 10px" src="images/forum/xinshou.jpg" align="left" alt="" border="0" /&&/a&
&div class="left"&
&h2&&a href="forum-73-1.html" style="color: #008C20;"&论坛新手导航&/a& &em& (今日: &strong&2&/strong&)&/em& &/h2&
&p&初来家园,先来这里看看吧~&/p&
&p&子版块: &a href="forum-198-1.html" style="color: #B310FF;"&我是新人我要报道^^&/a&&&&/p&
&p&版主: &a class="notabs" href="space.php?username=meaning"&meaning&/a&&/p&
&/div& &/th&
&td class="forumnums"& &em&513&/em& / 6808 &/td&
&td class="forumlast"& &p&&a href="redirect.php?tid=413365&goto=lastpost#lastpost"&新人报到帖——家园新人,领钱了 ...&/a&&/p& &cite& &a href="space.php?username=%CB%EA%BA%DB"&岁痕&/a& - &span title=" 15:18"&3&小时前&/span&&/cite& &/td&
&tbody id="forum9" class="normal_list"&
&th class="new"& &a href="forum-9-1.html"&&img style="float: margin-right: 10px" src="images/forum/xinxiguangchang.jpg" align="left" alt="" border="0" /&&/a&
&div class="left"&
&h2&&a href="forum-9-1.html" style="color: #FF0622;"&杭电信息综合平台&/a& &em& (今日: &strong&21&/strong&)&/em& &/h2&
&p&租房/讲座/兼职/校园新闻/勤工助学/活动讨论&/p&
&p&子版块: &a href="forum-117-1.html" style="color: #0E00E6;"&失物招领&/a&&&&a href="forum-79-1.html" style="color: #4325FF;"&勤工助学&/a&&&&/p&
&p&版主: &a class="notabs" href="space.php?username=%B5%D1%D7%D3"&笛子&/a&&/p&
&/div& &/th&
&td class="forumnums"& &em&13057&/em& / 82058 &/td&
&td class="forumlast"& &p&&a href="redirect.php?tid=582688&goto=lastpost#lastpost"&向各位路人求救!!关于杭电学生 ...&/a&&/p& &cite& &a href="space.php?username=%CE%A2%B9%E2"&微光&/a& - &span title=" 17:42"&半小时前&/span&&/cite& &/td&
&tbody id="forum188" class="normal_list"&
&th& &a href="forum-188-1.html"&&img style="float: margin-right: 10px" src="images/forum/hduty.jpg" align="left" alt="" border="0" /&&/a&
&div class="left"&
&h2&&a href="forum-188-1.html" style="color: #F37300;"&体育节&/a& &/h2&
&p&一年一度的杭电体育盛会,羽毛球/乒乓球/网球/篮球/足球/排球……&/p&
&p&版主: &a class="notabs" href="space.php?username=sorry_"&sorry_&/a&, &a class="notabs" href="space.php?username=%C0%BA%C7%F2%BE%E3%C0%D6%B2%BF"&篮球俱乐部&/a&, &a class="notabs" href="space.php?username=%CF%C4%C8%BE"&夏染&/a&, &a class="notabs" href="space.php?username=%B2%A8%B2%A8me"&波波me&/a&&/p&
&/div& &/th&
&td class="forumnums"& &em&421&/em& / 6569 &/td&
&td class="forumlast"& &p&&a href="redirect.php?tid=582201&goto=lastpost#lastpost"&体育节足球竞赛规程&/a&&/p& &cite& &a href="space.php?username=%B1%B4%D3%B0%C0%EB%C8%A5"&贝影离去&/a& - &span title=" 17:49"&昨天&17:49&/span&&/cite& &/td&
&tbody id="forum191" class="normal_list"&
&th class="new"& &a href="forum-191-1.html"&&img style="float: margin-right: 10px" src="images/forum/tiaozao.jpg" align="left" alt="" border="0" /&&/a&
&div class="left"&
&h2&&a href="forum-191-1.html" style="color: #5600DD;"&毕业大卖场&/a& &em& (今日: &strong&51&/strong&)&/em& &/h2&
&p&快毕业了,很多好东西用不到了,那就来低价甩卖吧!&/p&
&/div& &/th&
&td class="forumnums"& &em&2603&/em& / 16159 &/td&
&td class="forumlast"& &p&&a href="redirect.php?tid=582704&goto=lastpost#lastpost"&低价出售ipad!有图!&/a&&/p& &cite& &a href="space.php?username=%B7%BD%D0%A1%BD%DC"&方小杰&/a& - &span title=" 18:02"&19&分钟前&/span&&/cite& &/td&
&div id="ad_intercat_210"&&/div&
&div class="mainbox list"&
&span class="headactions"& 分区版主: &a class="notabs" href="space.php?username=%CF%E3%DC%F8%40%C7%E0"&香茗@青&/a& &img id="category_184_img" src="templates/redhome09_dz7.2/images/collapsed_no.gif" title="收起/展开" alt="收起/展开" onclick="toggle_collapse('category_184');" /& &/span&
&h3&&span&家园特色&/span&&/h3&
&table id="category_184" summary="category184" cellspacing="0" cellpadding="0" style=""&
&tr class="narrowlist"&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-195-1.html"&&img style="float: margin-right: 10px" src="images/forum/pin.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-195-1.html" title="一起开始拼的生活,你会从中找到一群新朋友 贴数:"&杭电拼客&/a& &em& (今日: &strong&8&/strong&)&/em& &/h2&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=581952" title="骑车去太子湾"&骑车去太子湾&/a&&/p&
&p& by &a href="space.php?username=lifedesigner"&lifedesigner&/a& - &a href="redirect.php?tid=581952&goto=lastpost#lastpost"&&span title=" 17:24"&半小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-180-1.html"&&img style="float: margin-right: 10px" src="images/forum/wenwen.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-180-1.html" title="杭电人自己的知道平台 贴数:"&杭电问问&/a& &em& (今日: &strong&42&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%C1%D9%CA%B1%B9%A4"&临时工&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582707" title="求一首在学校放了好久的歌曲名"&求一首在学校放了好 ...&/a&&/p&
&p& by &a href="space.php?username=%D0%A1%C7%E9%D0%F7"&小情绪&/a& - &a href="redirect.php?tid=582707&goto=lastpost#lastpost"&&span title=" 18:01"&19&分钟前&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-167-1.html"&&img style="float: margin-right: 10px" src="images/forum/xljk.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-167-1.html" title="青春的懵懂 岁月的蹉跎 一切都可以在这里倾诉 你会找到解答 贴数:662/16671"&心理健康&/a& &em& (今日: &strong&6&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%D1%EE%C0%CF%CA%A6"&杨老师&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=521143" title="让我告诉大家“为什么说大学里谈恋爱是必须”的真相吧"&让我告诉大家“为什 ...&/a&&/p&
&p& by &a href="space.php?username=ksharp"&ksharp&/a& - &a href="redirect.php?tid=521143&goto=lastpost#lastpost"&&span title=" 16:32"&1&小时前&/span&&/a&&/p&
&/div& &/th&
&div id="ad_intercat_184"&&/div&
&div class="mainbox list"&
&span class="headactions"& 分区版主: &a class="notabs" href="space.php?username=meaning"&meaning&/a& &img id="category_169_img" src="templates/redhome09_dz7.2/images/collapsed_no.gif" title="收起/展开" alt="收起/展开" onclick="toggle_collapse('category_169');" /& &/span&
&h3&&span&杭电信息港&/span&&/h3&
&table id="category_169" summary="category169" cellspacing="0" cellpadding="0" style=""&
&tr class="narrowlist"&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-11-1.html"&&img style="float: margin-right: 10px" src="images/forum/xueshengshichang.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-11-1.html" title="这里是学生市场,有很多好东东,祝大家在这里交易愉快! 贴数:616"&学生市场&/a& &em& (今日: &strong&229&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%C1%D9%CA%B1%B9%A4"&临时工&/a&, &a class="notabs" href="space.php?username=%D0%A1%F7%EB"&小麟&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582569" title="那么漂亮的发夹,买一个增加基友之间的情趣也是可以的啊!!"&那么漂亮的发夹,买 ...&/a&&/p&
&p& by &a href="space.php?username=%CF%F2%C8%D5%BF%FB"&向日葵&/a& - &a href="redirect.php?tid=582569&goto=lastpost#lastpost"&&span title=" 18:00"&20&分钟前&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-172-1.html"&&img style="float: margin-right: 10px" src="images/forum/jiuye.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-172-1.html" title="不断更新招聘信息,随时接收求职信息,为找工作贡献力量。 贴数:"&就业创业&/a& &em& (今日: &strong&28&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=...Eine"&...Eine&/a&, &a class="notabs" href="space.php?username=%BE%CD%D2%B5%B4%D9%BD%F8%D0%AD%BB%E1"&就业促进协会&/a&, &a class="notabs" href="space.php?username=%C1%D9%CA%B1%B9%A4"&临时工&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582598" title="想做IC设计的同学,可以内推"&想做IC设计的同学, ...&/a&&/p&
&p& by &a href="space.php?username=sky0000"&sky0000&/a& - &a href="redirect.php?tid=582598&goto=lastpost#lastpost"&&span title=" 18:06"&14&分钟前&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-84-1.html"&&img style="float: margin-right: 10px" src="images/forum/011.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-84-1.html" title="第一时间发布图书馆信息。 贴数:"&校图书馆&/a& &em& (今日: &strong&16&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%CD%BC%CA%E9%B9%DD"&图书馆&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582663" title="图书馆自助打印、复印、扫描服务平台正式开通"&图书馆自助打印、复 ...&/a&&/p&
&p& by &a href="space.php?username=%D0%A1%B7%BD%A1%A3"&小方。&/a& - &a href="redirect.php?tid=582663&goto=lastpost#lastpost"&&span title=" 18:17"&3&分钟前&/span&&/a&&/p&
&/div& &/th&
&div id="ad_intercat_169"&&/div&
&div class="mainbox list"&
&span class="headactions"& 分区版主: &a class="notabs" href="space.php?username=meaning"&meaning&/a& &img id="category_12_img" src="templates/redhome09_dz7.2/images/collapsed_no.gif" title="收起/展开" alt="收起/展开" onclick="toggle_collapse('category_12');" /& &/span&
&h3&&span&杭电校园&/span&&/h3&
&table id="category_12" summary="category12" cellspacing="0" cellpadding="0" style=""&
&tr class="narrowlist"&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-133-1.html"&&img style="float: margin-right: 10px" src="images/forum/007.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-133-1.html" title="校园的钟声叮当叮当;园里的林茵郁郁苍苍??梦中的伴侣虽已远离。成长的岁月最是令人难忘。 贴数:"&菁菁校园&/a& &em& (今日: &strong&54&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%C4%BE%C4%BE%B5%C4"&木木的&/a&, &a class="notabs" href="space.php?username=meaning"&meaning&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=568243" title="【自己动手改造自己的论坛!】家园论坛即将改版,更多意见等你来提~"&【自己动手改造自己 ...&/a&&/p&
&p& by &a href="space.php?username=meaning"&meaning&/a& - &a href="redirect.php?tid=568243&goto=lastpost#lastpost"&&span title=" 17:58"&22&分钟前&/span&&/a&&/p&
&/div& &/th&
&th width="33%"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-153-1.html"&&img style="float: margin-right: 10px" src="images/forum/shelian.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-153-1.html" title="我的社团,是徜徉在绿荫场上的青春; 我的社团, 是沉醉于贝司摇滚的动感节奏;我的社团,是洋溢在校园的点点爱心;我的社团,是翱翔于书香画卷的愉悦;我的社团,是伴我成长的沃土;我的社团,是让我成就梦想的舞台;我的社团, 是缤纷绚丽的乐园。我的社团,我做主! 贴数:447/53099"&社团之家&/a& &em& (今日: &strong&1&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%C9%E7%CD%C5%C1%AA%BA%CF%BB%E1"&社团联合会&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582611" title="自动化学院第十二次青年志愿者代表大会胜利召开"&自动化学院第十二次 ...&/a&&/p&
&p& by &a href="space.php?username=%D7%D4%B6%AF%BB%AF%C7%E0%D0%AD"&自动化青协&/a& - &a href="redirect.php?tid=582611&goto=lastpost#lastpost"&&span title=" 01:36"&16&小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-175-1.html"&&img style="float: margin-right: 10px" src="images/forum/zyz.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-175-1.html" title=" 贴数:468/5270"&志愿者之家&/a& &em& (今日: &strong&1&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%C7%A7%C4%EA%C7%D1%D7%D3"&千年茄子&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582539" title="松龄老人院志愿服务活动"&松龄老人院志愿服务 ...&/a&&/p&
&p& by &a href="space.php?username=%E5%D0%D2%A3%C9%FA"&逍遥生&/a& - &a href="redirect.php?tid=582539&goto=lastpost#lastpost"&&span title=" 17:45"&昨天&17:45&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-144-1.html"&&img style="float: margin-right: 10px" src="images/forum/exam.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-144-1.html" title="考试啦!大家多多提供相关资料! 贴数:"&考场风云&/a& &em& (今日: &strong&4&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%C1%D9%CA%B1%B9%A4"&临时工&/a&, &a class="notabs" href="space.php?username=%C4%AC%C8%BB"&默然&/a&, &a class="notabs" href="space.php?username=.%7C%D0%A1%D7%D3oO"&.|小子oO&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=557650" title="各种试卷呀,电路,大学军事,大学物理,C语言等等"&各种试卷呀,电路, ...&/a&&/p&
&p& by &a href="space.php?username=%CB%D5%D0%A1%C3%D7"&苏小米&/a& - &a href="redirect.php?tid=557650&goto=lastpost#lastpost"&&span title=" 17:45"&半小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-48-1.html"&&img style="float: margin-right: 10px" src="images/forum/006.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-48-1.html" title="青春远去,诗歌也远去,谈笑间往事灰飞烟灭,只剩下一些依稀的诗句在岁月的长河里,踏歌而行,渐行渐远…… 贴数:"&杭电记忆&/a& &em& (今日: &strong&1&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%CE%DE%C3%FB"&无名&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=579435" title="就这样快毕业了,这里有很多回忆,尤其是她。"&就这样快毕业了,这 ...&/a&&/p&
&p& by &a href="space.php?username=kingboy"&kingboy&/a& - &a href="redirect.php?tid=579435&goto=lastpost#lastpost"&&span title=" 10:22"&7&小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-69-1.html"&&img style="float: margin-right: 10px" src="images/forum/005.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-69-1.html" title="考研心得交流,研友关系处理……融洽、温馨,美好,尽在研究生版! 贴数:"&研究生之家&/a& &em& (今日: &strong&11&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%CE%DE%C3%FB"&&strong&无名&/strong&&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=581877" title="求研友,目标坚定上海交大 或同济
非诚勿扰!"&求研友,目标坚定上 ...&/a&&/p&
&p& by &a href="space.php?username=merryfirst"&merryfirst&/a& - &a href="redirect.php?tid=581877&goto=lastpost#lastpost"&&span title=" 17:16"&1&小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-205-1.html"&&img style="float: margin-right: 10px" src="http://bbs.redhome.cc/attachments/month_01963baf.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-205-1.html" title="三十年风雨走来,今天带你了解广播台那些不为人知的事情 贴数:126/2313"&杭电之声&/a& &/h2&
&p&版主: &a class="notabs" href="space.php?username=soulmate"&soulmate&/a&, &a class="notabs" href="space.php?username=%BA%BC%B5%E7%D6%AE%C9%F9"&杭电之声&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582437" title="求每晚广播剧的链接"&求每晚广播剧的链接&/a&&/p&
&p& by &a href="space.php?username=%BF%AA%CD%E8%D0%A7"&开丸效&/a& - &a href="redirect.php?tid=582437&goto=lastpost#lastpost"&&span title=" 18:46"&昨天&18:46&/span&&/a&&/p&
&/div& &/th&
&th width="33%"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-207-1.html"&&img style="float: margin-right: 10px" src="http://bbs.redhome.cc/attachment.php?aid=NDEyNzM1fDRmNDgwOTllfDEzMTgxNzU0ODd8ZDQwZjE0bE5NZUZSdldqeldmM1NKUHVhYzUyVTBhdDFibXBEZS9NdTBoQ0pWVlE%3D&noupdate=yes" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-207-1.html" title="杭电下沙东校区一方美丽的天地! 贴数:51/795"&东区别苑&/a& &/h2&
&p&版主: &a class="notabs" href="space.php?username=___%C7%E0%BB%D2"&&strong&___青灰&/strong&&/a&, &a class="notabs" href="space.php?username=%C6%EB%A8K%E5%CA%95%86"&&strong&齐↘迨晢&/strong&&/a&, &a class="notabs" href="space.php?username=.%7C%D0%A1%D7%D3oO"&&strong&.|小子oO&/strong&&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=578274" title="我上次组队去东校区"&我上次组队去东校区&/a&&/p&
&p& by &a href="space.php?username=%D2%B9%D6%AE%B7%E3"&夜之枫&/a& - &a href="redirect.php?tid=578274&goto=lastpost#lastpost"& 12:13&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-209-1.html"&&img style="float: margin-right: 10px" src="http://cms.redhome.cc/uploadfile/463.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-209-1.html" title="把握学生权利,这里是学校与学生交流的桥梁~ 贴数:86/1168"&对话杭电&/a& &em& (今日: &strong&3&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=T2K%D8%BC%C0%C7%D1%C0%D6%D0%EC%E1"&T2K丶狼牙中灬&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582644" title="寻人启事"&寻人启事&/a&&/p&
&p& by &a href="space.php?username=alone2000"&alone2000&/a& - &a href="redirect.php?tid=582644&goto=lastpost#lastpost"&&span title=" 16:28"&1&小时前&/span&&/a&&/p&
&/div& &/th&
&div id="ad_intercat_12"&&/div&
&div class="mainbox list"&
&span class="headactions"& 分区版主: &a class="notabs" href="space.php?username=...Eine"&...Eine&/a& &img id="category_146_img" src="templates/redhome09_dz7.2/images/collapsed_no.gif" title="收起/展开" alt="收起/展开" onclick="toggle_collapse('category_146');" /& &/span&
&h3&&span&社科广场&/span&&/h3&
&table id="category_146" summary="category146" cellspacing="0" cellpadding="0" style=""&
&tr class="narrowlist"&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-6-1.html"&&img style="float: margin-right: 10px" src="images/forum/009.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-6-1.html" title="电脑发烧友,网络冲浪者,这里是你们自由的交流天地 贴数:"&电脑交流&/a& &em& (今日: &strong&12&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%B9%FE%B8%E7"&哈哥&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582678" title="闪讯共享的困扰问题。ping值巨大。"&闪讯共享的困扰问题 ...&/a&&/p&
&p& by &a href="space.php?username=lifedesigner"&lifedesigner&/a& - &a href="redirect.php?tid=582678&goto=lastpost#lastpost"&&span title=" 17:25"&半小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-149-1.html"&&img style="float: margin-right: 10px" src="images/forum/sheji.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-149-1.html" title="它用人类最新的技术表达世间的美。 贴数:796/11188"&设计园地&/a& &em& (今日: &strong&2&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=06wj"&06wj&/a&, &a class="notabs" href="space.php?username=jiujiu"&jiujiu&/a&, &a class="notabs" href="space.php?username=%D4%C2%CF%C2%B6%C0%D7%C3"&月下独酌&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582127" title="考SOLID
EDGE3级需要培训吗?"&考SOLID EDGE3级需 ...&/a&&/p&
&p& by &a href="space.php?username=%CF%C2%C9%B3%C0%CB%D7%D3"&下沙浪子&/a& - &a href="redirect.php?tid=582127&goto=lastpost#lastpost"&&span title=" 16:58"&1&小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-49-1.html"&&img style="float: margin-right: 10px" src="images/forum/yingyushalong.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-49-1.html" title="Music.Movie.Sports.Entertainment.Literature,etc 贴数:"&英语沙龙&/a& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%B6%AB%D7%D3"&&strong&东子&/strong&&/a&, &a class="notabs" href="space.php?username=%B7%E5%CB%E6%90%A3%D7%AA"&&strong&峰随悾转&/strong&&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582605" title="英语"&英语&/a&&/p&
&p& by &a href="space.php?username=%C4%C7%B8%F6%BC%D2%BB%EF"&那个家伙&/a& - &a href="redirect.php?tid=582605&goto=lastpost#lastpost"&&span title=" 23:54"&昨天&23:54&/span&&/a&&/p&
&/div& &/th&
&th width="33%"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-147-1.html"&&img style="float: margin-right: 10px" src="images/forum/qianru.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-147-1.html" title="玩技术?绝对有意想不到的神奇! 贴数:763/8080"&单片机/嵌入式/电子设计&/a& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%DF%E4%B0%A7"&咪哀&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582553" title="公司提供一些勤奋爱学的同学实习场地和设备,只限真正感兴趣的同学"&公司提供一些勤奋爱 ...&/a&&/p&
&p& by &a href="space.php?username=%CF%E3%B4%E0%B4%BA%BE%ED"&香脆春卷&/a& - &a href="redirect.php?tid=582553&goto=lastpost#lastpost"&&span title=" 20:44"&昨天&20:44&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-148-1.html"&&img style="float: margin-right: 10px" src="images/forum/chengxu.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-148-1.html" title="数据结构+算法=程序设计 贴数:"&程序设计/网站开发&/a& &em& (今日: &strong&5&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%D2%B9%D6%AE%BB%A4%D5%DF"&夜之护者&/a&, &a class="notabs" href="space.php?username=jiujiu"&jiujiu&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582563" title="求review"&求review&/a&&/p&
&p& by &a href="space.php?username=alone2000"&alone2000&/a& - &a href="redirect.php?tid=582563&goto=lastpost#lastpost"&&span title=" 16:38"&1&小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-8-1.html"&&img style="float: margin-right: 10px" src="images/forum/014.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-8-1.html" title="未分类的综合类学术讨论 贴数:"&学术综合&/a& &/h2&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=581773" title="有谁会用OPNET或NS软件模拟CSMA协议的,帮我做两张仿真图,报酬丰厚。谢谢"&有谁会用OPNET或NS软 ...&/a&&/p&
&p& by &a href="space.php?username=gujian"&gujian&/a& - &a href="redirect.php?tid=581773&goto=lastpost#lastpost"&&span title=" 22:32"&7&天前&22:32&/span&&/a&&/p&
&/div& &/th&
&div id="ad_intercat_146"&&/div&
&div class="mainbox list"&
&span class="headactions"& 分区版主: &a class="notabs" href="space.php?username=%CF%E3%DC%F8%40%C7%E0"&香茗@青&/a& &img id="category_170_img" src="templates/redhome09_dz7.2/images/collapsed_no.gif" title="收起/展开" alt="收起/展开" onclick="toggle_collapse('category_170');" /& &/span&
&h3&&span&氤氲人文&/span&&/h3&
&table id="category_170" summary="category170" cellspacing="0" cellpadding="0" style=""&
&tr class="narrowlist"&
&th width="33%"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-165-1.html"&&img style="float: margin-right: 10px" src="images/forum/wafy.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-165-1.html" title="原创文学的桃花源地,文人墨客的闲暇栖处。
贴数:"&苇岸风吟(文学版)&/a& &em& (今日: &strong&1&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=log6666"&log6666&/a&, &a class="notabs" href="space.php?username=%D0%A1%B9%EA%B9%EA"&小龟龟&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=482977" title="《浮生若水 年华浅离》系列~之《偶遇高中旧友》(七律218L)"&《浮生若水 年华浅离 ...&/a&&/p&
&p& by &a href="space.php?username=alone2000"&alone2000&/a& - &a href="redirect.php?tid=482977&goto=lastpost#lastpost"&&span title=" 20:03"&5&天前&20:03&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-166-1.html"&&img style="float: margin-right: 10px" src="images/forum/wzxq.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-166-1.html" title="用文字挥洒最悸动的情感,让心情如烟火般绽放。 贴数:"&文字心情&/a& &em& (今日: &strong&11&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=city"&city&/a&, &a class="notabs" href="space.php?username=%D0%A1%F7%EB"&小麟&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582687" title="天气很闷,心情也烦躁得要死"&天气很闷,心情也烦 ...&/a&&/p&
&p& by &a href="space.php?username=%CE%A2%B9%E2"&微光&/a& - &a href="redirect.php?tid=582687&goto=lastpost#lastpost"&&span title=" 17:41"&半小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-174-1.html"&&img style="float: margin-right: 10px" src="images/forum/yuanchuangwenxue.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-174-1.html" title="精彩转载、读书笔记、美文、小说,这里是阅读的一片星空! 贴数:772/10853"&星空阅读&/a& &em& (今日: &strong&6&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=Angela_xiaoyin"&Angela_xiaoyin&/a&, &a class="notabs" href="space.php?username=alone2000"&alone2000&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582630" title="NMZ【图书行业内幕】转自【果壳网】"&NMZ【图书行业内幕】 ...&/a&&/p&
&p& by &a href="space.php?username=%B3%C2%B8%A1%C9%FA"&陈浮生&/a& - &a href="redirect.php?tid=582630&goto=lastpost#lastpost"&&span title=" 16:20"&2&小时前&/span&&/a&&/p&
&/div& &/th&
&div id="ad_intercat_170"&&/div&
&div class="mainbox list"&
&span class="headactions"& 分区版主: &a class="notabs" href="space.php?username=%D7%D4%D3%C9%C9%A2%C2%FE"&自由散漫&/a& &img id="category_1_img" src="templates/redhome09_dz7.2/images/collapsed_no.gif" title="收起/展开" alt="收起/展开" onclick="toggle_collapse('category_1');" /& &/span&
&h3&&span&生活交流&/span&&/h3&
&table id="category_1" summary="category1" cellspacing="0" cellpadding="0" style=""&
&tr class="narrowlist"&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-3-1.html"&&img style="float: margin-right: 10px" src="images/forum/013.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-3-1.html" title="青春情感=青春+情感。&br /&
青春,需要的是激情,更多的是冲动;&br /&
情感,需要的是经历,更多的是勇气。&br /&
释放自我,诠释自我吧!! 贴数:"&青春情感&/a& &em& (今日: &strong&16&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%BD%AD%D0%A1%D6%ED"&&strong&江小猪&/strong&&/a&, &a class="notabs" href="space.php?username=%E3%C2%B6%AE%C0%BD%D2%E4"&&strong&懵懂澜忆&/strong&&/a&&/p&
&p& 子版块:&a href="forum-186-1.html" style="color: #FF3B6D;"&缘分天空(征友)&/a&&& &/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582686" title="已戒"&已戒&/a&&/p&
&p& by &a href="space.php?username=smilence"&smilence&/a& - &a href="redirect.php?tid=582686&goto=lastpost#lastpost"&&span title=" 17:29"&半小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-34-1.html"&&img style="float: margin-right: 10px" src="images/forum/012.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-34-1.html" title="传播视觉文化,提供交流平台 贴数:"&摄影贴图&/a& &em& (今日: &strong&4&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%C1%D9%CA%B1%B9%A4"&临时工&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=516691" title="灰常有感觉的照片!!"&灰常有感觉的照片! ...&/a&&/p&
&p& by &a href="space.php?username=Mlover"&Mlover&/a& - &a href="redirect.php?tid=516691&goto=lastpost#lastpost"&&span title=" 13:40"&4&小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-110-1.html"&&img style="float: margin-right: 10px" src="images/forum/024.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-110-1.html" title="携手健康,共进美食 贴数:938/19754"&健康饮食&/a& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%D3%D6%BC%FB%D0%A1%C7%E0"&又见小青&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=581300" title="下沙哪里有卖牛肉羹之类的"&下沙哪里有卖牛肉羹 ...&/a&&/p&
&p& by &a href="space.php?username=doublechow"&doublechow&/a& - &a href="redirect.php?tid=581300&goto=lastpost#lastpost"&&span title=" 00:10"&昨天&00:10&/span&&/a&&/p&
&/div& &/th&
&div id="ad_intercat_1"&&/div&
&div class="mainbox list"&
&span class="headactions"& 分区版主: &a class="notabs" href="space.php?username=%D7%D4%D3%C9%C9%A2%C2%FE"&自由散漫&/a& &img id="category_18_img" src="templates/redhome09_dz7.2/images/collapsed_no.gif" title="收起/展开" alt="收起/展开" onclick="toggle_collapse('category_18');" /& &/span&
&h3&&span&休闲娱乐&/span&&/h3&
&table id="category_18" summary="category18" cellspacing="0" cellpadding="0" style=""&
&tr class="narrowlist"&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-23-1.html"&&img style="float: margin-right: 10px" src="images/forum/028.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-23-1.html" title="爱体育,爱生活 贴数:"&体坛动态&/a& &em& (今日: &strong&86&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%D6%ED%CD%B7%B0%A2%C8%FD"&猪头阿三&/a&, &a class="notabs" href="space.php?username=lwy775"&lwy775&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=509902" title="亲爱的姚明。。。。亲爱的刘翔。。。。"&亲爱的姚明。。。。 ...&/a&&/p&
&p& by &a href="space.php?username=%D4%D9%BC%FB%D0%A1%CA%B1%BA%F2"&再见小时候&/a& - &a href="redirect.php?tid=509902&goto=lastpost#lastpost"&&span title=" 17:34"&半小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-155-1.html"&&img style="float: margin-right: 10px" src="images/forum/shouji.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-155-1.html" title="交流手机使用心得,共享最新手机资讯 贴数:681/7555"&手机/相机/电脑…(数码世界)&/a& &em& (今日: &strong&1&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%E8%A8%C3%DD%B5%C4Guai%B1%B4"&瑷幂的Guai贝&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=580292" title="同学,你丢过手机吗?"&同学,你丢过手机吗 ...&/a&&/p&
&p& by &a href="space.php?username=%C4%C7%B8%F6%BC%D2%BB%EF"&那个家伙&/a& - &a href="redirect.php?tid=580292&goto=lastpost#lastpost"&&span title=" 00:09"&18&小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-19-1.html"&&img style="float: margin-right: 10px" src="images/forum/001.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-19-1.html" title="共筑影音长廊 同享动漫天地 贴数:"&影视/音乐/动漫&/a& &/h2&
&p&版主: &a class="notabs" href="space.php?username=___%C7%E0%BB%D2"&&strong&___青灰&/strong&&/a&, &a class="notabs" href="space.php?username=endlessrain"&&strong&endlessrain&/strong&&/a&, &a class="notabs" href="space.php?username=__%C2%CC%B4%A8%C8%F4%A1%A3"&&strong&__绿川若。&/strong&&/a&&/p&
&p& 子版块:&a href="forum-131-1.html"&家园影院&/a&&& &/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582283" title="有喜欢德国摇滚乐队Can的吗"&有喜欢德国摇滚乐队 ...&/a&&/p&
&p& by &a href="space.php?username=%C6%BD_%BA%DA_%B7%A6"&平_黑_乏&/a& - &a href="redirect.php?tid=582283&goto=lastpost#lastpost"&&span title=" 14:07"&前天&14:07&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-22-1.html"&&img style="float: margin-right: 10px" src="images/forum/jiuba.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-22-1.html" title="是不是不知道你想说的话该放在哪里?那就放这里,畅聊吧 贴数:0378"&闲聊酒吧&/a& &em& (今日: &strong&291&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%A1%BA%CD%ED%B0%B2%A1%BB"&『晚安』&/a&, &a class="notabs" href="space.php?username=%CE%A2%B9%E2"&微光&/a&, &a class="notabs" href="space.php?username=zaki"&zaki&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582590" title="福利贴
禽兽你个二"&福利贴 禽兽你个二&/a&&/p&
&p& by &a href="space.php?username=sky0000"&sky0000&/a& - &a href="redirect.php?tid=582590&goto=lastpost#lastpost"&&span title=" 18:19"&1&分钟前&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-27-1.html"&&img style="float: margin-right: 10px" src="images/forum/mario.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-27-1.html" title="游戏人的地盘,游戏人的天下 贴数:"&游戏天下&/a& &em& (今日: &strong&1&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%BC%D2%D4%B0%D0%A1%C2%F3%CC%EF"&&strong&家园小麦田&/strong&&/a&&/p&
&p& 子版块:&a href="forum-156-1.html"&桌面游戏&/a&&& &/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582682" title="有没有玩坦克世界的,,,。"&有没有玩坦克世界的 ...&/a&&/p&
&p& by &a href="space.php?username=unangel"&unangel&/a& - &a href="redirect.php?tid=582682&goto=lastpost#lastpost"&&span title=" 17:21"&半小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-44-1.html"&&img style="float: margin-right: 10px" src="images/forum/023.gif" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-44-1.html" title="养眼的&&夺目的 绚丽的 多彩的 秀出你的时尚 贴数:"&非常时尚&/a& &em& (今日: &strong&1&/strong&)&/em& &/h2&
&p&版主: &a class="notabs" href="space.php?username=xiaowang"&xiaowang&/a&, &a class="notabs" href="space.php?username=Alis0n"&Alis0n&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=581781" title="白色让女孩变得更美丽"&白色让女孩变得更美 ...&/a&&/p&
&p& by &a href="space.php?username=fengshulingt"&fengshulingt&/a& - &a href="redirect.php?tid=581781&goto=lastpost#lastpost"&&span title=" 15:36"&2&小时前&/span&&/a&&/p&
&/div& &/th&
&div id="ad_intercat_18"&&/div&
&div class="mainbox list"&
&span class="headactions"& 分区版主: &a class="notabs" href="space.php?username=meaning"&meaning&/a& &img id="category_24_img" src="templates/redhome09_dz7.2/images/collapsed_no.gif" title="收起/展开" alt="收起/展开" onclick="toggle_collapse('category_24');" /& &/span&
&h3&&span&管理专区&/span&&/h3&
&table id="category_24" summary="category24" cellspacing="0" cellpadding="0" style=""&
&tr class="narrowlist"&
&th width="33%"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-80-1.html"&&img style="float: margin-right: 10px" src="images/forum/shengqing.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-80-1.html" title="申请版主,超版,贵宾,友情链接。 贴数:768/18711"&申请专区&/a& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%D5%DB%CB%AE"&折水&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=577801" title="申请&非常时尚&版主转正"&申请&非常时尚&版主 ...&/a&&/p&
&p& by &a href="space.php?username=huchensi"&huchensi&/a& - &a href="redirect.php?tid=577801&goto=lastpost#lastpost"& 10:37&/a&&/p&
&/div& &/th&
&th width="33%" class="new"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-74-1.html"&&img style="float: margin-right: 10px" src="images/forum/jianyi.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-74-1.html" title="对家园的建议意见。 贴数:"&建议投诉&/a& &em& (今日: &strong&2&/strong&)&/em& &/h2&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=582614" title="叫我们怎么活"&叫我们怎么活&/a&&/p&
&p& by &a href="space.php?username=%D7%D4%D3%C9%C9%A2%C2%FE"&自由散漫&/a& - &a href="redirect.php?tid=582614&goto=lastpost#lastpost"&&span title=" 09:27"&8&小时前&/span&&/a&&/p&
&/div& &/th&
&th width="33%"&
&div class="cell_box"&
&div class="icon_box"&
&a href="forum-72-1.html"&&img style="float: margin-right: 10px" src="images/forum/gonggao.jpg" align="left" alt="" border="0" /&&/a&
&h2&&a href="forum-72-1.html" title="论坛公告 贴数:156/2877"&论坛公告&/a& &/h2&
&p&版主: &a class="notabs" href="space.php?username=%D5%DB%CB%AE"&折水&/a&&/p&
&div class="clear"&&/div&
&div class="last_reply"&
&p& 最后发表:&a href="viewthread.php?tid=581358" title="学年第二学期工资发放公告"&学年第二学 ...&/a&&/p&
&p& by &a href="space.php?username=%F0%A9%D4%C2%B1%F9%E5%B7"&皓月冰宸&/a& - &a href="redirect.php?tid=581358&goto=lastpost#lastpost"& 22:59&/a&&/p&
&/div& &/th&
&div id="ad_intercat_24"&&/div&
&div class="mainbox list"&
&span class="headactions"&&img id="forumlinks_img" src="templates/redhome09_dz7.2/images/collapsed_no.gif" alt="" onclick="toggle_collapse('forumlinks');" /&&/span&
&h3&友情链接&/h3&
&div id="forumlinks" style=""&
&div class="forumimglink"&
&a href="http://www.redhome.cc/" target="_blank"&&img src="http://bbs.redhome.cc/logo.gif" border="0" alt="红色家园" /&&/a&
&a href="http://bbs.scnu.edu.cn" target="_blank"&&img src="http://bbs.redhome.cc/attachments/month_5c67f888.gif" border="0" alt="华师新陶园论坛" /&&/a&
&a href="http://www.zjut.com.cn/" target="_blank"&&img src="http://www.zjut.com.cn/pic/zjut.gif" border="0" alt="浙江工业大学论坛" /&&/a&
&a href="http://bbs.xiasha.cn" target="_blank"&&img src="http://bbs.redhome.cc/attachments/month_3c2c67b4.gif" border="0" alt="下沙论坛" /&&/a&
&a href="http://kyouwar.com/" target="_blank"&&img src="http://bbs.redhome.cc/attachments/month_ca767099.gif" border="0" alt="快游社区" /&&/a&
&div class="forumtxtlink"&
&ul class="s_clear"&
&li&&a href="http://sunshine.zstu.edu.cn/bbs/index.php" target="_blank" title="浙江理工大学阳光网站论坛"&浙江理工大学阳光网站论坛&/a&&/li&
&li&&a href="http://blog.redhome.cc" target="_blank" title="家园博客"&家园博客&/a&&/li&
&li&&a hr

我要回帖

更多关于 不尽人意 什么意思 的文章

 

随机推荐