HttpClient 4.1版本,模拟登录,终于成功了(2)

激动万分,跳转到了主页面了,HOHO。以下是纯正的草稿代码,

这世界上还有人能看懂么?

package endual.jsoup.client3;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;

import org.apache.http.Header;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.ProtocolVersion;
import org.apache.http.StatusLine;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.*;
import org.apache.http.client.utils.URIUtils;
import org.apache.http.client.utils.URLEncodedUtils;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.protocol.HTTP;
import org.apache.http.util.EntityUtils;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Attributes;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;

import com.sun.jndi.toolkit.url.Uri;

 
/**
 * 200页面客户端请求已经成功相应了
 * 301永久重定向某个链接
 * 302临时重定向到某个链接
 * 404要寻找的页面暂时的没有存在
 * @author Endual
 *
 */
public class DictSpider {
 
   
     
    public static void main(String[] args) throws Exception {
    	
        login();

    }
     


    /**
     * 执行登录过程
     * @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.length; 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.length; 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("---------======-----66666666666-----======------");
		//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("---------======-----6666667766666-----======------");
	    System.out.println(chenweiUrl);
	    System.out.println("---------======-----6666776666666-----======------");
//	    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" + chenweiUrl ;
       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("---------======-----6666668866666-----======------");
	    System.out.println(chenweiUrl1);
	    System.out.println("---------======-----6666886666666-----======------");
       
       
        
	    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.length; 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) ;
        }else{
        	 
        	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">
<head>
  <meta http-equiv="Content-Type" content="text/html; 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"]
			}); 
		});

  </script>
  </head>
<body>
  <div class="wrapper01">
  <div class="logo">
	<a href="http://bbs.redhome.cc"><img src="/images/logo.jpg" /></a>
  </div>
  <div class="top_nav">
	<ul>
  <li><a href="/user/logout">注销</a></li>
  <li><a href="/help.html" rel="shadowbox;width=700;height=600px;title=通行证帮助">帮助</a></li>
  <li><a href="/admin">后台登陆</a></li>
  
</ul>  </div>
  <div class="float_right index_mainbox">
	<div class="bg_box">
	  <div class="daohang">
		<ul>
  <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>
</ul>	  </div>
	  <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">&nbsp;您好,欢迎您登录家园通行证</span></p>
  </div>
  <div>
  </div>
  <div class="gongneng">
    <div class="jianju">
      <p><span class="bold">论坛服务:</span>&nbsp;点击链接登录您的论坛帐号:<br />
        <ul>  
                              <li>
            <a href="/role/loging/id/qdgXb60uynTD1aFlW20Z0vUUMwe69reeBSZIKxragnQI8S96FyHGEaTtpPxtQver" target="_blank" class="name red" title="点击账号登录">chenwei</a>
          </li>
                            </ul>
    </div>
  </div>
</div>
		</div>
		<div class="neirong_right">
		  <div>
			<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=16053">09.12.28-关于 2010年元旦放假安排的通知</a></p><p><a target=_blank href="http://newcms.redhome.cc/view.php?tid=21815&cid=204">2009-2010学年第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>		  </div>
		  <div>
				<h3>新闻动态</h3>
	<ul>
		<script type="text/javascript" src="http://www.redhome.cc/index.php?m=dbsource&c=call&a=get&id=2"></script>
	</ul>		  </div>
		</div>
	  </div>
	  <div class="clear"></div>
	</div>
	<div class="just_bg"></div>
	<div class="mainbox_bottombg"></div>
  </div>
  <div class="gonggao01"><a target=_blank href="http://go.redhome.cc/2011training"><img src="http://newcms.redhome.cc/attachment/1109/481a68e343.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 &copy; 2000-2010 redhome.cc</p>
<p>All rights reserved</p>
</p>  </div>
</div>
</body>
</html>

---------======-----66666666666-----======------
<!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">
 <head> 
  <meta http-equiv="Content-Type" content="text/html; 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"]
			}); 
		});

  
  </script> 
 </head> 
 <body> 
  <div class="wrapper01"> 
   <div class="logo"> 
    <a href="http://bbs.redhome.cc"><img src="/images/logo.jpg" /></a> 
   </div> 
   <div class="top_nav"> 
    <ul> 
     <li><a href="/user/logout">注销</a></li> 
     <li><a href="/help.html" rel="shadowbox;width=700;height=600px;title=通行证帮助">帮助</a></li> 
     <li><a href="/admin">后台登陆</a></li> 
    </ul> 
   </div> 
   <div class="float_right index_mainbox"> 
    <div class="bg_box"> 
     <div class="daohang"> 
      <ul> 
       <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> 
      </ul> 
     </div> 
     <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">&nbsp;您好,欢迎您登录家园通行证</span></p> 
        </div> 
        <div> 
        </div> 
        <div class="gongneng"> 
         <div class="jianju"> 
          <p><span class="bold">论坛服务:</span>&nbsp;点击链接登录您的论坛帐号:<br /> </p>
          <ul> 
           <li> <a href="/role/loging/id/qdgXb60uynTD1aFlW20Z0vUUMwe69reeBSZIKxragnQI8S96FyHGEaTtpPxtQver" target="_blank" class="name red" title="点击账号登录">chenwei</a> </li> 
          </ul> 
         </div> 
        </div> 
       </div> 
      </div> 
      <div class="neirong_right"> 
       <div> 
        <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=16053">09.12.28-关于 2010年元旦放假安排的通知</a></p>
        <p><a target="_blank" href="http://newcms.redhome.cc/view.php?tid=21815&amp;cid=204">2009-2010学年第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> 
       </div> 
       <div> 
        <h3>新闻动态</h3> 
        <ul> 
         <script type="text/javascript" src="http://www.redhome.cc/index.php?m=dbsource&amp;c=call&amp;a=get&amp;id=2"></script> 
        </ul> 
       </div> 
      </div> 
     </div> 
     <div class="clear"></div> 
    </div> 
    <div class="just_bg"></div> 
    <div class="mainbox_bottombg"></div> 
   </div> 
   <div class="gonggao01">
    <a target="_blank" href="http://go.redhome.cc/2011training"><img src="http://newcms.redhome.cc/attachment/1109/481a68e343.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 &copy; 2000-2010 redhome.cc</p> 
    <p>All rights reserved</p> 
    <p></p> 
   </div> 
  </div>   
 </body>
</html>
---------======-----6666667766666-----======------
/role/loging/id/qdgXb60uynTD1aFlW20Z0vUUMwe69reeBSZIKxragnQI8S96FyHGEaTtpPxtQver
---------======-----6666776666666-----======------
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">
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<meta http-equiv="refresh" content="2.5; url=http://bbs.redhome.cc/api/uc.php?time=1333016473&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" />  
</head>
<body>
<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=1333016473&code=62a0eiSprd5%2FW0eU5FL%2Bmt7nfuwX2jhW4MPjRUhcYTlnBOmP66jCpxcmZGgOzc4z5aSXkKa6mK69ghbb14F0Q6ml7t7cGy6SNGCPZdVHrz9Ko5wmBIIjo6O8xj6geWdeVDv7%2FTKCSsh9yOBwg5r5Wnu6478QTJRZ6Z7ZVQstT9ME">正在验证您的登录信息,请稍候……</a></p>
		<script type="text/javascript" src="http://bbs.redhome.cc/api/uc.php?time=1333016473&code=62a0eiSprd5%2FW0eU5FL%2Bmt7nfuwX2jhW4MPjRUhcYTlnBOmP66jCpxcmZGgOzc4z5aSXkKa6mK69ghbb14F0Q6ml7t7cGy6SNGCPZdVHrz9Ko5wmBIIjo6O8xj6geWdeVDv7%2FTKCSsh9yOBwg5r5Wnu6478QTJRZ6Z7ZVQstT9ME" reload="1"></script>   </div>
</div>
</body>
</html>


<!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">
 <head> 
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  <meta http-equiv="refresh" content="2.5; url=http://bbs.redhome.cc/api/uc.php?time=1333016473&amp;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" /> 
 </head> 
 <body> 
  <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=1333016473&amp;code=62a0eiSprd5%2FW0eU5FL%2Bmt7nfuwX2jhW4MPjRUhcYTlnBOmP66jCpxcmZGgOzc4z5aSXkKa6mK69ghbb14F0Q6ml7t7cGy6SNGCPZdVHrz9Ko5wmBIIjo6O8xj6geWdeVDv7%2FTKCSsh9yOBwg5r5Wnu6478QTJRZ6Z7ZVQstT9ME">正在验证您的登录信息,请稍候……</a></p> 
    <script type="text/javascript" src="http://bbs.redhome.cc/api/uc.php?time=1333016473&amp;code=62a0eiSprd5%2FW0eU5FL%2Bmt7nfuwX2jhW4MPjRUhcYTlnBOmP66jCpxcmZGgOzc4z5aSXkKa6mK69ghbb14F0Q6ml7t7cGy6SNGCPZdVHrz9Ko5wmBIIjo6O8xj6geWdeVDv7%2FTKCSsh9yOBwg5r5Wnu6478QTJRZ6Z7ZVQstT9ME" reload="1"></script> 
   </div> 
  </div>   
 </body>
</html>
1
---------======-----6666668866666-----======------
http://bbs.redhome.cc/api/uc.php?time=1333016473&code=62a0eiSprd5%2FW0eU5FL%2Bmt7nfuwX2jhW4MPjRUhcYTlnBOmP66jCpxcmZGgOzc4z5aSXkKa6mK69ghbb14F0Q6ml7t7cGy6SNGCPZdVHrz9Ko5wmBIIjo6O8xj6geWdeVDv7%2FTKCSsh9yOBwg5r5Wnu6478QTJRZ6Z7ZVQstT9ME
---------======-----6666886666666-----======------
org.apache.http.conn.BasicManagedEntity@2ce908
nginx
Thu, 29 Mar 2012 10:21:02 GMT
text/html; charset=utf-8
chunked
keep-alive
timeout=20
PHP/5.3.10-pl0-gentoo
Thu, 19 Nov 1981 08:52:00 GMT
no-store, no-cache, must-revalidate, post-check=0, pre-check=0
no-cache
******************************************************
<!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">
 <head> 
  <meta http-equiv="Content-Type" content="text/html; 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> 
  <script src="forumdata/cache/common.js?fp9" type="text/javascript"></script> 
 </head> 
 <body id="index" οnkeydοwn="if(event.keyCode==27) return false;"> 
  <div id="append_parent"></div>
  <div id="ajaxwaitid"></div> 
  <div class="help"> 
   <h1>问题咨询</h1> 
   <div class="help_content"> 
    <ul> 
     <li><a href="http://weibo.com/hduredhome">微博留言</a></li> 
     <li><a href="http://bbs.redhome.cc/viewthread.php?tid=504206&amp;extra=page%3D1">账号服务</a></li> 
     <li><a href="http://bbs.redhome.cc/thread-478741-1-1.html">联系我们</a></li> 
    </ul> 
   </div> 
  </div> 
  <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");
});
});

  </script> 
  <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:block;width:184px;height:55px;position:absolute;margin-left:-183px; 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" οnmοuseοver="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&amp;formhash=2e4ea235">退出</a> 
    </div> 
    <div id="menu"> 
     <ul> 
      <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" οnmοuseοver="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&amp;searchsubmit=yes" hidefocus="true" id="mn_search_1">查看新帖</a></li>
     </ul> 
     <script type="text/javascript">
var currentMenu = $('mn_index') ? $('mn_index') : $('mn_index');
currentMenu.parentNode.className = 'current';

     </script> 
    </div> 
   </div> 
   <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&amp;action=invite" target="_blank"> (0)</a></li>
     </ul> 
    </div> 
   </div> 
  </div> 
  <!--*topmargin add by archer top*--> 
  <div class="headbox"> 
   <table cellspacing="0" cellpadding="0" style="width:100%;"> 
    <tbody>
     <tr> 
      <td style="width:195px">
       <div class="head_con1"> 
        <div id="ad_headerbanner"></div>
       </div></td> 
      <td style="width:230px;">
       <div class="head_con2"> 
        <h3>家园公告</h3> 
        <div class="head_con21"> 
         <ul> 
         </ul> 
        </div> 
       </div></td> 
      <td> 
       <div class="head_con3"> 
        <h3>最新主题</h3> 
        <div class="head_con31"> 
         <ul> 
          <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> 
         </ul> 
        </div> 
       </div> </td> 
      <td style="width:100px;"> 
       <div class="head_con4"> 
        <h3>今日发帖排行</h3> 
        <div class="head_con41"> 
         <ul>
          <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> 
         </ul> 
        </div> 
       </div> </td> 
     </tr> 
    </tbody>
   </table> 
  </div> 
  <div id="ad_text"></div> 
  <div id="wrap" class="wrap with_side s_clear"> 
   <a id="sidebar_img" href="javascript:;" οnclick="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="收起/展开" οnclick="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"> 
        <tr> 
         <th class="new"> <a href="forum-216-1.html"><img style="float:left; margin-right: 10px" src="http://bbs.redhome.cc/attachments/month_1202/120210141606aa17252d7e3221.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&amp;goto=lastpost#lastpost">杭电女生节形象大使旗袍宣传片</a></p> <cite> <a href="space.php?username=xuexp">xuexp</a> - <span title="2012-3-29 18:15">5&nbsp;分钟前</span></cite> </td> 
        </tr> 
       </tbody> 
       <tbody id="forum125" class="normal_list"> 
        <tr> 
         <th class="new"> <a href="forum-125-1.html"><img style="float:left; 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&amp;goto=lastpost#lastpost">组队观看女生节晚会[hdu]</a></p> <cite> <a href="space.php?username=mydc">mydc</a> - <span title="2012-3-29 17:54">27&nbsp;分钟前</span></cite> </td> 
        </tr> 
       </tbody> 
       <tbody id="forum73" class="normal_list"> 
        <tr> 
         <th class="new"> <a href="forum-73-1.html"><img style="float:left; 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>&nbsp;&nbsp;</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&amp;goto=lastpost#lastpost">新人报到帖——家园新人,领钱了 ...</a></p> <cite> <a href="space.php?username=%CB%EA%BA%DB">岁痕</a> - <span title="2012-3-29 15:18">3&nbsp;小时前</span></cite> </td> 
        </tr> 
       </tbody> 
       <tbody id="forum9" class="normal_list"> 
        <tr> 
         <th class="new"> <a href="forum-9-1.html"><img style="float:left; 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>&nbsp;&nbsp;<a href="forum-79-1.html" style="color: #4325FF;">勤工助学</a>&nbsp;&nbsp;</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&amp;goto=lastpost#lastpost">向各位路人求救!!关于杭电学生 ...</a></p> <cite> <a href="space.php?username=%CE%A2%B9%E2">微光</a> - <span title="2012-3-29 17:42">半小时前</span></cite> </td> 
        </tr> 
       </tbody> 
       <tbody id="forum188" class="normal_list"> 
        <tr> 
         <th> <a href="forum-188-1.html"><img style="float:left; 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&amp;goto=lastpost#lastpost">体育节足球竞赛规程</a></p> <cite> <a href="space.php?username=%B1%B4%D3%B0%C0%EB%C8%A5">贝影离去</a> - <span title="2012-3-28 17:49">昨天&nbsp;17:49</span></cite> </td> 
        </tr> 
       </tbody> 
       <tbody id="forum191" class="normal_list"> 
        <tr> 
         <th class="new"> <a href="forum-191-1.html"><img style="float:left; 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&amp;goto=lastpost#lastpost">低价出售ipad!有图!</a></p> <cite> <a href="space.php?username=%B7%BD%D0%A1%BD%DC">方小杰</a> - <span title="2012-3-29 18:02">19&nbsp;分钟前</span></cite> </td> 
        </tr> 
       </tbody> 
      </table> 
     </div> 
     <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="收起/展开" οnclick="toggle_collapse('category_184');" /> </span> 
      <h3><span>家园特色</span></h3> 
      <table id="category_184" summary="category184" cellspacing="0" cellpadding="0" style=""> 
       <tbody>
        <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:left; margin-right: 10px" src="images/forum/pin.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-195-1.html" title="一起开始拼的生活,你会从中找到一群新朋友 贴数:1282/15032">杭电拼客</a> <em> (今日: <strong>8</strong>)</em> </h2> 
           <p> </p> 
           <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&amp;goto=lastpost#lastpost"><span title="2012-3-29 17:24">半小时前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-180-1.html"><img style="float:left; margin-right: 10px" src="images/forum/wenwen.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-180-1.html" title="杭电人自己的知道平台 贴数:10175/95311">杭电问问</a> <em> (今日: <strong>42</strong>)</em> </h2> 
           <p>版主: <a class="notabs" href="space.php?username=%C1%D9%CA%B1%B9%A4">临时工</a></p> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 18:01">19&nbsp;分钟前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-167-1.html"><img style="float:left; margin-right: 10px" src="images/forum/xljk.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 16:32">1&nbsp;小时前</span></a></p> 
           </div> 
          </div> </th> 
        </tr>
       </tbody>
      </table> 
     </div> 
     <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="收起/展开" οnclick="toggle_collapse('category_169');" /> </span> 
      <h3><span>杭电信息港</span></h3> 
      <table id="category_169" summary="category169" cellspacing="0" cellpadding="0" style=""> 
       <tbody>
        <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:left; margin-right: 10px" src="images/forum/xueshengshichang.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-11-1.html" title="这里是学生市场,有很多好东东,祝大家在这里交易愉快! 贴数:112393/864616">学生市场</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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 18:00">20&nbsp;分钟前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-172-1.html"><img style="float:left; margin-right: 10px" src="images/forum/jiuye.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-172-1.html" title="不断更新招聘信息,随时接收求职信息,为找工作贡献力量。 贴数:4722/42190">就业创业</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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 18:06">14&nbsp;分钟前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-84-1.html"><img style="float:left; margin-right: 10px" src="images/forum/011.gif" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-84-1.html" title="第一时间发布图书馆信息。 贴数:1544/14870">校图书馆</a> <em> (今日: <strong>16</strong>)</em> </h2> 
           <p>版主: <a class="notabs" href="space.php?username=%CD%BC%CA%E9%B9%DD">图书馆</a></p> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 18:17">3&nbsp;分钟前</span></a></p> 
           </div> 
          </div> </th> 
        </tr>
       </tbody>
      </table> 
     </div> 
     <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="收起/展开" οnclick="toggle_collapse('category_12');" /> </span> 
      <h3><span>杭电校园</span></h3> 
      <table id="category_12" summary="category12" cellspacing="0" cellpadding="0" style=""> 
       <tbody>
        <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:left; margin-right: 10px" src="images/forum/007.gif" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-133-1.html" title="校园的钟声叮当叮当;园里的林茵郁郁苍苍��梦中的伴侣虽已远离。成长的岁月最是令人难忘。 贴数:8747/122246">菁菁校园</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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 17:58">22&nbsp;分钟前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-153-1.html"><img style="float:left; margin-right: 10px" src="images/forum/shelian.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 01:36">16&nbsp;小时前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-175-1.html"><img style="float:left; margin-right: 10px" src="images/forum/zyz.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-28 17:45">昨天&nbsp;17:45</span></a></p> 
           </div> 
          </div> </th> 
        </tr> 
       </tbody> 
       <tbody> 
        <tr> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-144-1.html"><img style="float:left; margin-right: 10px" src="images/forum/exam.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-144-1.html" title="考试啦!大家多多提供相关资料! 贴数:1890/45484">考场风云</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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 17:45">半小时前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-48-1.html"><img style="float:left; margin-right: 10px" src="images/forum/006.gif" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-48-1.html" title="青春远去,诗歌也远去,谈笑间往事灰飞烟灭,只剩下一些依稀的诗句在岁月的长河里,踏歌而行,渐行渐远…… 贴数:1013/19599">杭电记忆</a> <em> (今日: <strong>1</strong>)</em> </h2> 
           <p>版主: <a class="notabs" href="space.php?username=%CE%DE%C3%FB">无名</a></p> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 10:22">7&nbsp;小时前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-69-1.html"><img style="float:left; margin-right: 10px" src="images/forum/005.gif" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-69-1.html" title="考研心得交流,研友关系处理……融洽、温馨,美好,尽在研究生版! 贴数:6210/49649">研究生之家</a> <em> (今日: <strong>11</strong>)</em> </h2> 
           <p>版主: <a class="notabs" href="space.php?username=%CE%DE%C3%FB"><strong>无名</strong></a></p> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 17:16">1&nbsp;小时前</span></a></p> 
           </div> 
          </div> </th> 
        </tr> 
       </tbody> 
       <tbody> 
        <tr> 
         <th width="33%"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-205-1.html"><img style="float:left; margin-right: 10px" src="http://bbs.redhome.cc/attachments/month_1104/110412201963baf91737d5dd21.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-28 18:46">昨天&nbsp;18:46</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-207-1.html"><img style="float:left; margin-right: 10px" src="http://bbs.redhome.cc/attachment.php?aid=NDEyNzM1fDRmNDgwOTllfDEzMTgxNzU0ODd8ZDQwZjE0bE5NZUZSdldqeldmM1NKUHVhYzUyVTBhdDFibXBEZS9NdTBoQ0pWVlE%3D&amp;noupdate=yes" align="left" alt="" border="0" /></a>
           </div> 
           <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> 
           <p> </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&amp;goto=lastpost#lastpost">2012-3-18 12:13</a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-209-1.html"><img style="float:left; margin-right: 10px" src="http://cms.redhome.cc/uploadfile/2011/0911/20110911092901463.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 16:28">1&nbsp;小时前</span></a></p> 
           </div> 
          </div> </th> 
        </tr>
       </tbody>
      </table> 
     </div> 
     <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="收起/展开" οnclick="toggle_collapse('category_146');" /> </span> 
      <h3><span>社科广场</span></h3> 
      <table id="category_146" summary="category146" cellspacing="0" cellpadding="0" style=""> 
       <tbody>
        <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:left; margin-right: 10px" src="images/forum/009.gif" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-6-1.html" title="电脑发烧友,网络冲浪者,这里是你们自由的交流天地 贴数:8707/103047">电脑交流</a> <em> (今日: <strong>12</strong>)</em> </h2> 
           <p>版主: <a class="notabs" href="space.php?username=%B9%FE%B8%E7">哈哥</a></p> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 17:25">半小时前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-149-1.html"><img style="float:left; margin-right: 10px" src="images/forum/sheji.gif" align="left" alt="" border="0" /></a>
           </div> 
           <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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 16:58">1&nbsp;小时前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-49-1.html"><img style="float:left; margin-right: 10px" src="images/forum/yingyushalong.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-49-1.html" title="Music.Movie.Sports.Entertainment.Literature,etc 贴数:2095/25514">英语沙龙</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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-28 23:54">昨天&nbsp;23:54</span></a></p> 
           </div> 
          </div> </th> 
        </tr> 
       </tbody> 
       <tbody> 
        <tr> 
         <th width="33%"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-147-1.html"><img style="float:left; margin-right: 10px" src="images/forum/qianru.gif" align="left" alt="" border="0" /></a>
           </div> 
           <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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-28 20:44">昨天&nbsp;20:44</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-148-1.html"><img style="float:left; margin-right: 10px" src="images/forum/chengxu.gif" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-148-1.html" title="数据结构+算法=程序设计 贴数:1860/25570">程序设计/网站开发</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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 16:38">1&nbsp;小时前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-8-1.html"><img style="float:left; margin-right: 10px" src="images/forum/014.gif" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-8-1.html" title="未分类的综合类学术讨论 贴数:5441/28057">学术综合</a> </h2> 
           <p> </p> 
           <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&amp;goto=lastpost#lastpost"><span title="2012-3-22 22:32">7&nbsp;天前&nbsp;22:32</span></a></p> 
           </div> 
          </div> </th> 
        </tr>
       </tbody>
      </table> 
     </div> 
     <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="收起/展开" οnclick="toggle_collapse('category_170');" /> </span> 
      <h3><span>氤氲人文</span></h3> 
      <table id="category_170" summary="category170" cellspacing="0" cellpadding="0" style=""> 
       <tbody>
        <tr class="narrowlist"> 
         <th width="33%"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-165-1.html"><img style="float:left; margin-right: 10px" src="images/forum/wafy.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-165-1.html" title="原创文学的桃花源地,文人墨客的闲暇栖处。  贴数:2884/42702">苇岸风吟(文学版)</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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-24 20:03">5&nbsp;天前&nbsp;20:03</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-166-1.html"><img style="float:left; margin-right: 10px" src="images/forum/wzxq.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-166-1.html" title="用文字挥洒最悸动的情感,让心情如烟火般绽放。 贴数:2385/48905">文字心情</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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 17:41">半小时前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-174-1.html"><img style="float:left; margin-right: 10px" src="images/forum/yuanchuangwenxue.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 16:20">2&nbsp;小时前</span></a></p> 
           </div> 
          </div> </th> 
        </tr>
       </tbody>
      </table> 
     </div> 
     <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="收起/展开" οnclick="toggle_collapse('category_1');" /> </span> 
      <h3><span>生活交流</span></h3> 
      <table id="category_1" summary="category1" cellspacing="0" cellpadding="0" style=""> 
       <tbody>
        <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:left; margin-right: 10px" src="images/forum/013.gif" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-3-1.html" title="青春情感=青春+情感。&lt;br /&gt;
青春,需要的是激情,更多的是冲动;&lt;br /&gt;
情感,需要的是经历,更多的是勇气。&lt;br /&gt;
释放自我,诠释自我吧!! 贴数:9173/245812">青春情感</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>&nbsp;&nbsp; </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 17:29">半小时前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-34-1.html"><img style="float:left; margin-right: 10px" src="images/forum/012.gif" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-34-1.html" title="传播视觉文化,提供交流平台 贴数:7597/128573">摄影贴图</a> <em> (今日: <strong>4</strong>)</em> </h2> 
           <p>版主: <a class="notabs" href="space.php?username=%C1%D9%CA%B1%B9%A4">临时工</a></p> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 13:40">4&nbsp;小时前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-110-1.html"><img style="float:left; margin-right: 10px" src="images/forum/024.gif" align="left" alt="" border="0" /></a>
           </div> 
           <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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-28 00:10">昨天&nbsp;00:10</span></a></p> 
           </div> 
          </div> </th> 
        </tr>
       </tbody>
      </table> 
     </div> 
     <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="收起/展开" οnclick="toggle_collapse('category_18');" /> </span> 
      <h3><span>休闲娱乐</span></h3> 
      <table id="category_18" summary="category18" cellspacing="0" cellpadding="0" style=""> 
       <tbody>
        <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:left; margin-right: 10px" src="images/forum/028.gif" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-23-1.html" title="爱体育,爱生活 贴数:9451/288117">体坛动态</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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 17:34">半小时前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-155-1.html"><img style="float:left; margin-right: 10px" src="images/forum/shouji.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 00:09">18&nbsp;小时前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-19-1.html"><img style="float:left; margin-right: 10px" src="images/forum/001.gif" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-19-1.html" title="共筑影音长廊 同享动漫天地 贴数:8238/93931">影视/音乐/动漫</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>&nbsp;&nbsp; </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&amp;goto=lastpost#lastpost"><span title="2012-3-27 14:07">前天&nbsp;14:07</span></a></p> 
           </div> 
          </div> </th> 
        </tr> 
       </tbody> 
       <tbody> 
        <tr> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-22-1.html"><img style="float:left; margin-right: 10px" src="images/forum/jiuba.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-22-1.html" title="是不是不知道你想说的话该放在哪里?那就放这里,畅聊吧 贴数:120294/2610378">闲聊酒吧</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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 18:19">1&nbsp;分钟前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-27-1.html"><img style="float:left; margin-right: 10px" src="images/forum/mario.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-27-1.html" title="游戏人的地盘,游戏人的天下 贴数:4788/51614">游戏天下</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>&nbsp;&nbsp; </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 17:21">半小时前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-44-1.html"><img style="float:left; margin-right: 10px" src="images/forum/023.gif" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-44-1.html" title="养眼的&nbsp;&nbsp;夺目的 绚丽的 多彩的 秀出你的时尚 贴数:1586/32503">非常时尚</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> 
           <p> </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&amp;goto=lastpost#lastpost"><span title="2012-3-29 15:36">2&nbsp;小时前</span></a></p> 
           </div> 
          </div> </th> 
        </tr>
       </tbody>
      </table> 
     </div> 
     <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="收起/展开" οnclick="toggle_collapse('category_24');" /> </span> 
      <h3><span>管理专区</span></h3> 
      <table id="category_24" summary="category24" cellspacing="0" cellpadding="0" style=""> 
       <tbody>
        <tr class="narrowlist"> 
         <th width="33%"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-80-1.html"><img style="float:left; margin-right: 10px" src="images/forum/shengqing.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <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> 
           <p> </p> 
           <div class="clear"></div> 
           <div class="last_reply"> 
            <p> 最后发表:<a href="viewthread.php?tid=577801" title="申请&lt;非常时尚&gt;版主转正">申请&lt;非常时尚&gt;版主 ...</a></p> 
            <p> by <a href="space.php?username=huchensi">huchensi</a> - <a href="redirect.php?tid=577801&amp;goto=lastpost#lastpost">2012-3-21 10:37</a></p> 
           </div> 
          </div> </th> 
         <th width="33%" class="new"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-74-1.html"><img style="float:left; margin-right: 10px" src="images/forum/jianyi.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <h2><a href="forum-74-1.html" title="对家园的建议意见。 贴数:1942/26368">建议投诉</a> <em> (今日: <strong>2</strong>)</em> </h2> 
           <p> </p> 
           <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&amp;goto=lastpost#lastpost"><span title="2012-3-29 09:27">8&nbsp;小时前</span></a></p> 
           </div> 
          </div> </th> 
         <th width="33%"> 
          <div class="cell_box"> 
           <div class="icon_box">
            <a href="forum-72-1.html"><img style="float:left; margin-right: 10px" src="images/forum/gonggao.jpg" align="left" alt="" border="0" /></a>
           </div> 
           <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> 
           <p> </p> 
           <div class="clear"></div> 
           <div class="last_reply"> 
            <p> 最后发表:<a href="viewthread.php?tid=581358" title="2010-2011学年第二学期工资发放公告">2010-2011学年第二学 ...</a></p> 
            <p> by <a href="space.php?username=%F0%A9%D4%C2%B1%F9%E5%B7">皓月冰宸</a> - <a href="redirect.php?tid=581358&amp;goto=lastpost#lastpost">2012-3-20 22:59</a></p> 
           </div> 
          </div> </th> 
        </tr>
       </tbody>
      </table> 
     </div> 
     <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="" οnclick="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_1011/10111616311de6f9515c67f888.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_1011/10111616319f24f0113c2c67b4.gif" border="0" alt="下沙论坛" /></a> 
        <a href="http://kyouwar.com/" target="_blank"><img src="http://bbs.redhome.cc/attachments/month_1011/10111616311758fe47ca767099.gif" border="0" alt="快游社区" /></a> 
       </div> 
       <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 href="http://www.hdu.edu.cn/" target="_blank" title="杭电主页">杭电主页</a></li>
         <li><a href="http://acm.hdu.edu.cn/" target="_blank" title="杭电ACM">杭电ACM</a></li>
         <li><a href="http://www.hduradio.com/" target="_blank" title="杭电广播台">杭电广播台</a></li>
         <li><a href="http://auto.hdu.edu.cn/jns/" target="_blank" title="杭电吉尼斯">杭电吉尼斯</a></li>
         <li><a href="http://www.zjgsdx.com/" target="_blank" title="浙江工商大学论坛">浙江工商大学论坛</a></li>
         <li><a href="http://spark.cjlu.edu.cn/bbs" target="_blank" title="计量后院BBS">计量后院BBS</a></li>
         <li><a href="http://bbs.stuin.com/" target="_blank" title="宁波大学生论坛">宁波大学生论坛</a></li>
         <li><a href="http://www.wanlifeng.com/" target="_blank" title="万里风">万里风</a></li>
         <li><a href="http://www.zstubbs.com" target="_blank" title="浙江理工大学论坛">浙江理工大学论坛</a></li>
         <li><a href="http://bbs.redhome.cc" target="_blank" title="杭州电子科技大学论坛">杭州电子科技大学论坛</a></li>
         <li><a href="http://bbs.redhome.cc/viewthread.php?tid=478741&amp;page=1&amp;extra=#pid4208832" target="_blank" title="友链广告联系">友链广告联系</a></li> 
        </ul> 
       </div> 
      </div> 
     </div> 
     <div class="mainbox list" id="bdays"> 
      <h3 id="bdayslist"> <a href="member.php?action=list&amp;type=birthdays">生日快乐</a>: <a href="space.php?uid=101095" target="_blank" title="1987-03-29">笠日</a>, <a href="space.php?uid=104366" target="_blank" title="1989-03-29">zhouping3755</a>, <a href="space.php?uid=121006" target="_blank" title="1993-03-29">阳光流过的忧伤</a>, <a href="space.php?uid=14585" target="_blank" title="2006-03-29">蜷缩的倾诉</a> </h3> 
     </div> 
     <div class="mainbox list" id="online"> 
      <span class="headactions"><a href="index.php?showoldetails=yes#online" class="nobdr"><img src="templates/redhome09_dz7.2/images/collapsed_yes.gif" alt="" /></a></span> 
      <h3> <strong><a href="member.php?action=online">在线会员</a></strong> - 总计 <em>935</em> 人在线 - 最高记录是 <em>1822</em> 于 <em>2011-11-7</em>. </h3> 
     </div> 
    </div> 
   </div> 
   <div id="sidebar" class="side" style=""> 
    <div id="infoside"> 
     <div class="sidebox1"> 
      <h4>论坛状态</h4> 
      <div class="fourm_statue"> 
       <ul class="line1"> 
        <li title="2405">昨日: <em>2405</em></li> 
        <li title="928">今日: <em>928</em></li> 
        <li title="10164">��高日: <em>10164</em></li> 
        <li title="5310659">帖子: <em> 531万 </em></li> 
       </ul> 
       <ul class="line2"> 
        <li title="358588">主题: <em> 35.86万 </em></li> 
        <li title="56580">会员: <em>56580</em></li> 
        <li title="935">在线: <em>935</em></li> 
        <li title="自由在犯贱">新人: <cite><a href="space.php?username=%D7%D4%D3%C9%D4%DA%B7%B8%BC%FA">自由在犯贱</a></cite></li> 
       </ul> 
       <div class="clear"></div> 
      </div> 
     </div> 
     <hr class="shadowline" /> 
     <div class="sidebox1"> 
      <div class="left_side">
       <img src="http://bbs.redhome.cc/uc_server/avatar.php?uid=98445&amp;size=small" /> 
       <p><a href="my.php?item=threads">我的帖子</a></p> 
       <p><a href="my.php?item=favorites&amp;type=thread">我的收藏</a></p> 
      </div> 
      <div class="right_side"> 
       <p><span>您好:</span><a href="space.php?uid=98445">chenwei</a></p> 
       <p>论坛币:4687</p> 
       <p>金币:201</p> 
      </div> 
      <div class="clear"></div> 
     </div> 
     <hr class="shadowline" /> 
     <div class="sidebox"> 
      <h4>最新回复</h4> 
      <ul class="textinfolist"> 
       <li><img src="images/common/slisticon.gif" border="0" align="absmiddle" /><a href="viewthread.php?tid=582708" title="杜甫很忙,你知道么?">杜甫很忙,你知道么?</a></li>
       <li><img src="images/common/slisticon.gif" border="0" align="absmiddle" /><a href="viewthread.php?tid=582598" title="想做IC设计的同学,可以内推">想做IC设计的同学,可</a></li>
       <li><img src="images/common/slisticon.gif" border="0" align="absmiddle" /><a href="viewthread.php?tid=582704" title="低价出售ipad!有图!">低价出售ipad!有图!</a></li>
       <li><img src="images/common/slisticon.gif" border="0" align="absmiddle" /><a href="viewthread.php?tid=582707" title="求一首在学校放了好久的歌曲名">求一首在学校放了好久</a></li>
       <li><img src="images/common/slisticon.gif" border="0" align="absmiddle" /><a href="viewthread.php?tid=582569" title="那么漂亮的发夹,买一个增加基友之间的情趣也是可以的啊!!">那么漂亮的发夹,买一</a></li> 
      </ul> 
     </div>
     <hr class="shadowline" /> 
     <div class="sidebox taglist s_clear"> 
      <h4><a href="tag.php">标签(TAG)</a></h4> 
      <a href="tag.php?name=%B8%DF%B2%C6" class="tagl1" title="2" target="_blank">高财</a> 
      <a href="tag.php?name=%CF%D6%B4%FA%BD%F0%C8%DA%D1%A7%BC%B1%B4%D9" class="tagl1" title="1" target="_blank">现代金融学急促</a> 
      <a href="tag.php?name=%CD%E2%C6%F3" class="tagl1" title="1" target="_blank">外企</a> 
      <a href="tag.php?name=%C8%AB%C7%F2500%C7%BF" class="tagl1" title="1" target="_blank">全球500强</a> 
      <a href="tag.php?name=%D3%D0%CD%BC%C6%AC" class="tagl1" title="1" target="_blank">有图片</a> 
      <a href="tag.php?name=%CD%BC%CF%F1%B9%A4%B3%CC" class="tagl1" title="2" target="_blank">图像工程</a> 
      <a href="tag.php?name=%C8%CB%C1%A6%D7%CA%D4%B4" class="tagl1" title="1" target="_blank">人力资源</a> 
      <a href="tag.php?name=%CD%BC%CF%F1%B4%A6%C0%ED" class="tagl1" title="2" target="_blank">图像处理</a> 
      <a href="tag.php?name=%C8%F0%CA%BF%BE%FC%B5%B6" class="tagl1" title="1" target="_blank">瑞士军刀</a> 
      <a href="tag.php?name=%B8%A3%C0%D7%B5%C2" class="tagl1" title="2" target="_blank">福雷德</a> 
      <a href="tag.php?name=%C1%B7%CF%B0" class="tagl1" title="1" target="_blank">练习</a> 
      <a href="tag.php?name=GWD" class="tagl1" title="1" target="_blank">GWD</a> 
      <a href="tag.php?name=%BB%E1%BC%C6%D0%C5%CF%A2%CF%B5%CD%B3" class="tagl1" title="1" target="_blank">会计信息系统</a> 
      <a href="tag.php?name=%B9%DC%C0%ED%D1%A7" class="tagl1" title="1" target="_blank">管理学</a> 
      <a href="tag.php?name=%D5%C5%D8%B9%BD%FA" class="tagl1" title="2" target="_blank">张毓晋</a> 
      <a href="tag.php?name=GAMT" class="tagl1" title="1" target="_blank">GAMT</a> 
      <a href="tag.php?name=%CA%FD%D7%D6%CD%BC%CF%F1%B4%A6%C0%ED" class="tagl1" title="2" target="_blank">数字图像处理</a> 
      <a href="tag.php?name=%B5%E7%D7%D3%D0%C5%CF%A2" class="tagl1" title="1" target="_blank">电子信息</a> 
      <a href="tag.php?name=%BB%CA%B9%DA" class="tagl1" title="1" target="_blank">皇冠</a> 
      <a href="tag.php?name=%BD%CC%BF%C6" class="tagl1" title="1" target="_blank">教科</a> 
     </div> 
     <hr class="shadowline" />
     <div class="sidebox"> 
      <h4>活跃会员</h4> 
      <ul class="avt_list"> 
       <li><a title="烟酒僧" href="space.php?uid=117916" target="_blank"><img src="http://bbs.redhome.cc/uc_server/avatar.php?uid=117916&amp;size=small" /></a></li>
       <li><a title="XiaOLee" href="space.php?uid=105002" target="_blank"><img src="http://bbs.redhome.cc/uc_server/avatar.php?uid=105002&amp;size=small" /></a></li>
       <li><a title="zclupup" href="space.php?uid=114110" target="_blank"><img src="http://bbs.redhome.cc/uc_server/avatar.php?uid=114110&amp;size=small" /></a></li>
       <li><a title="陆小傻" href="space.php?uid=117151" target="_blank"><img src="http://bbs.redhome.cc/uc_server/avatar.php?uid=117151&amp;size=small" /></a></li>
       <li><a title="Rainstone" href="space.php?uid=104708" target="_blank"><img src="http://bbs.redhome.cc/uc_server/avatar.php?uid=104708&amp;size=small" /></a></li>
       <li><a title="『晚安』" href="space.php?uid=112687" target="_blank"><img src="http://bbs.redhome.cc/uc_server/avatar.php?uid=112687&amp;size=small" /></a></li>
       <li><a title="微光" href="space.php?uid=121253" target="_blank"><img src="http://bbs.redhome.cc/uc_server/avatar.php?uid=121253&amp;size=small" /></a></li>
       <li><a title="电池没电" href="space.php?uid=113004" target="_blank"><img src="http://bbs.redhome.cc/uc_server/avatar.php?uid=113004&amp;size=small" /></a></li>
       <li><a title="。花沫" href="space.php?uid=121281" target="_blank"><img src="http://bbs.redhome.cc/uc_server/avatar.php?uid=121281&amp;size=small" /></a></li>
       <li><a title="泡芙姐姐" href="space.php?uid=121521" target="_blank"><img src="http://bbs.redhome.cc/uc_server/avatar.php?uid=121521&amp;size=small" /></a></li>
       <li><a title="alone2000" href="space.php?uid=111902" target="_blank"><img src="http://bbs.redhome.cc/uc_server/avatar.php?uid=111902&amp;size=small" /></a></li>
       <li><a title="tcc1991" href="space.php?uid=111062" target="_blank"><img src="http://bbs.redhome.cc/uc_server/avatar.php?uid=111062&amp;size=small" /></a></li> 
      </ul> 
      <div class="clear"></div> 
     </div> 
    </div> 
   </div> 
  </div>
  <ul class="popupmenu_popup headermenu_popup" id="plugin_menu" style="display: none"> 
   <li><a id="mn_plugin_stock_stock" href="plugin.php?id=stock:stock"><b><font color="red">活跃股市</font></b></a></li> 
  </ul> 
  <ul class="popupmenu_popup headermenu_popup" id="ijy88j_menu" style="display: none">
   <li><a href="http://bbs.redhome.cc/lovewall.php" hidefocus="true">家园许愿墙</a></li>
   <li><a href="http://bbs.redhome.cc/plugins.php?p=nkflash" hidefocus="true">家园小游戏</a></li>
   <li><a href="http://passport.redhome.cc" hidefocus="true">家园通行证</a></li>
   <li><a href="http://labs.redhome.cc/search" hidefocus="true" target="_blank">家园搜索</a></li>
  </ul>
  <div id="ad_footerbanner1"></div>
  <div id="ad_footerbanner2"></div>
  <div id="ad_footerbanner3"></div> 
  <div id="footer"> 
   <div class="wrap s_clear"> 
    <div id="footlink"> 
     <p> <strong><a href="http://www.redhome.cc/" target="_blank">红色家园网站</a></strong> ( <a href="http://www.miibeian.gov.cn/" target="_blank">浙ICP备05012690号</a>)<span class="pipe">|</span><a href="mailto:redhome@hdu.edu.cn">联系我们</a> <span class="pipe">|</span><a href="stats.php">论坛统计</a><span class="pipe">|</span><a href="archiver/" target="_blank">Archiver</a><span class="pipe">|</span><a href="wap/" target="_blank">WAP</a><span class="pipe">| 
       <!-- Piwik --> 
       <script type="text/javascript">
var pkBaseURL = (("https:" == document.location.protocol) ? "https://go.redhome.cc/piwik/" : "http://go.redhome.cc/piwik/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));

       </script>
       <script type="text/javascript">
try {
var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", 2);
piwikTracker.trackPageView();
piwikTracker.enableLinkTracking();
} catch( err ) {}

       </script>
       <noscript></noscript></span></p>
     <p><img src="http://go.redhome.cc/piwik/piwik.php?idsite=2" style="border:0" alt="" /></p> 
     <!-- End Piwik Tracking Code -->
     <p></p> 
     <p class="smalltext"> GMT+8, 2012-3-29 18:21, <span id="debuginfo">Processed in 0.009270 second(s), 5 queries, Gzip enabled</span>. </p> 
    </div> 
    <div id="rightinfo"> 
     <p>Powered by <strong><a href="http://www.discuz.net" target="_blank" rel="nofollow">Discuz!</a></strong> <em>7.2</em></p> 
     <p class="smalltext">&copy; 2001-2009 <a href="http://www.comsenz.com" target="_blank" rel="nofollow">Comsenz Inc.</a></p> 
    </div>
   </div> 
  </div> 
  <div style="display: none" id="hide_ads"> 
   <div id="hide_ad_headerbanner">
    <a href="http://bbs.redhome.cc/viewthread.php?tid=578618&amp;page=1&amp;extra=#pid5735420" target="_blank"><img src="http://bbs.redhome.cc/attachments/month_1203/1203021007a0a9540b7a69dd27.jpg" height="133" width="188" alt="kphdu" border="0" /></a>
   </div> 
   <div class="ad_footerbanner" id="hide_ad_footerbanner1"></div> 
   <div class="ad_footerbanner" id="hide_ad_footerbanner2"></div> 
   <div class="ad_footerbanner" id="hide_ad_footerbanner3"></div> 
  </div> 
  <script type="text/javascript">
function showads(unavailables, filters) {
var ad, re;
var hideads = $('hide_ads').getElementsByTagName('div');
for(var i = 0; i < hideads.length; i++) {
if(hideads[i].id.substr(0, 8) == 'hide_ad_' && (ad = $(hideads[i].id.substr(5))) && hideads[i].innerHTML && trim(ad.innerHTML) == '') {
ad.innerHTML = hideads[i].innerHTML;
ad.className = hideads[i].className;
}
}
}
showads();
$('hide_ads').parentNode.removeChild($('hide_ads'));

  </script>  
 </body>
</html>
 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值