代码如下
[CODE]<!--#include file="Connections/connect.asp" -->
<%
Dim Recordset_novel
Dim Recordset_novel_numRows
Set Recordset_novel = Server.CreateObject("ADODB.Recordset")
Recordset_novel.ActiveConnection = MM_connect_STRING
Recordset_novel.Source = "SELECT * FROM novel ORDER BY time DESC"
Recordset_novel.CursorType = 0Recordset_novel.CursorLocation = 2
Recordset_novel.LockType = 1
Recordset_novel.Open()Recordset_novel_numRows = 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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
<!--body { margin-left: 112px; margin-right: 112px;}-->
</style>
</head>
<body>
<table width="100%" border="0"> 
    <tr> 
      <td colspan="3"><img src="Image/novel_logo1.jpg" width="340" height="59" /></td> 
    </tr> 
    <tr> 
       <td colspan="3"> </td> 
    </tr> 
    <tr> 
       <td width="27%" rowspan="2">
          <table width="100%" border="0" cellspacing="1" bgcolor="#000000"> 
              <tr> 
                 <td bgcolor="#FFFFFF"><div align="right"></div></td> 
              </tr> 
          </table>
        </td> 
        <td width="36%">
           <table width="100%" border="0" cellspacing="1" bgcolor="#000000"> 
               <tr> 
                  <td height="17" bgcolor="#FFFFFF">类型1</td> 
              </tr> 
               <tr> 
                  <td bgcolor="#FFFFFF"><%=(Recordset_novel.Fields.Item("title").Value)%></td> 
               </tr> 
           </table>
         </td> 
         <td width="37%">
            <table width="100%" border="0" cellspacing="1" bgcolor="#000000"> 
               <tr> 
                  <td bgcolor="#FFFFFF">类型2</td> 
              </tr> 
              <tr> 
                  <td bgcolor="#FFFFFF"> </td> 
              </tr> 
            </table>
         </td> 
    </tr> 
     <tr> 
         <td>
            <table width="100%" border="0" cellspacing="1" bgcolor="#000000"> 
                <tr> 
                    <td bgcolor="#FFFFFF">类型3</td> 
                </tr> 
                <tr> <td bgcolor="#FFFFFF"> </td> 
                </tr> 
             </table>
         </td> 
         <td width="37%">
             <table width="100%" border="0" cellspacing="1" bgcolor="#000000"> 
                <tr> 
                   <td bgcolor="#FFFFFF">类型4</td> 
               </tr> 
                <tr> 
                   <td bgcolor="#FFFFFF"> </td> 
               </tr> 
            </table>
        </td> 
  </tr> 
   <tr> <td colspan="3"><img src="Image/bottom.gif" width="800" height="150" /></td> 
  </tr>
</table>
</body>
</html>
<%Recordset_novel.Close()Set Recordset_novel = Nothing%>[/CODE]
代码太乱,不利于别人分析,这次先帮你改一下。