频道直达 - 学院 - 下载 - 交易 - 特效 - 字库 - 手册 -排名-工具- 繁體
网页教学网站开发 设为首页
加入收藏
联系我们
建站搜索: 常用广告代码   用户注册 | 用户登陆
您当前的位置:中国建站之家 -> 网站开发设计技术教程 -> asp教程 -> 客户端用ASP+rds+VBA参生报表(高级篇)

客户端用ASP+rds+VBA参生报表(高级篇)

作者:未知  来源:转载  发布时间:2005-7-20 11:14:09  发布人:acx

减小字体 增大字体

test_print_report.asp

<html>
<head>
<meta content="text/html; charset=BIG5" http-equiv="Content-Type">
<title>client use rds produce excel report</title>
</head>
<body bgColor="skyblue" topMargin=0 leftMargin="20" oncontextmenu="return false" rightMargin="0" bottomMargin="0">
<form action="test_print_report.asp" method="post" name="myform">
<div align="center"><center>
<table border="5" bgcolor="#ffe4b5" style="HEIGHT: 1px; TOP: 0px" bordercolor="#0000ff">
<tr>
<td align="middle" bgcolor="#ffffff" bordercolor="#000080">
<font color="#000080" size="3">
client use rds produce excel report
</font>
</td>
</tr>
</table>
</div>
<div align="left">
<input type="button" value="Query Data" name="query" language="vb&#115cript" onclick="fun_query()" style="HEIGHT: 32px; WIDTH: 90px">
<input type="button" value="Clear Data" name="Clear" language="vb&#115cript" onclick="fun_clear()" style="HEIGHT: 32px; WIDTH: 90px">
<input type="button" value="Excel Report" name="report" language="vb&#115cript" onclick="fun_excel()" style="HEIGHT: 32px; WIDTH: 90px">
</div>
<div id="adddata"></div>
</form></center>
</body>
</html>
<&#115cript language="vb&#115cript&quot;&gt;<br> dim rds,rs,df <br> dim strSQL,StrRs,strCn,RowCnt<br> dim xlApp, xlBook, xlSheet1,xlmodule,XlPageSetup<br> dim HeadRowCnt,TitleRowCnt,ContentRowCnt,FootRowCnt<br> dim PageRowCnt,PageNo,TotalPageCnt,ContentRowNowCnt<br> dim ColumnAllWidth,ColumnAWidth,ColumnBWidth,ColumnCWidth,ColumnDWidth<br> <br> sub fun_query()<br> set rds = CreateObject(&quot;RDS.DataSpace&quot;)<br> Set df = rds.CreateObject(&quot;RDSServer.DataFactory&quot;,&quot;<a target="_blank" href=http://iscs00074&quot>http://iscs00074&quot</a>;)<br> strCn=&quot;DRIVER=&#123;SQL Server&#125;;SERVER=iscs00074;UID=sa;APP=Microsoft Development Environment;DATABASE=pubs;User Id=sa;PASSWORD=;&quot;<br> strSQL = &quot;Select * from jobs&quot;<br> Set rs = df.Query(strCn, strSQL)<br> <br> if not rs.eof then<br> StrRs=&quot;&lt;table border=1&gt;&lt;tr&gt;&lt;td&gt;job_id&lt;/td&gt;&lt;td&gt;job_desc&lt;/td&gt;&lt;td&gt;max_lvl&lt;/td&gt;&lt;td&gt;min_lvl&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&quot;+ rs.GetString(,,&quot;&lt;/td&gt;&lt;td&gt;&quot;,&quot;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&quot;,&quot; &quot;) +&quot;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&quot; <br> adddata.innerHTML=StrRs<br> StrRs=&quot;&quot;<br> else<br> msgbox &quot;No data in the table!&quot; <br> end if<br> end sub<br> <br> sub fun_clear()<br> StrRs=&quot;&quot;<br> adddata.innerHTML=StrRs<br> end sub <br> <br> sub fun_excel()<br> set rds = CreateObject(&quot;RDS.DataSpace&quot;)<br> Set df = rds.CreateObject(&quot;RDSServer.DataFactory&quot;,&quot;<a target="_blank" href=http://iscs00074&quot>http://iscs00074&quot</a>;)<br> strCn=&quot;DRIVER=&#123;SQL Server&#125;;SERVER=iscs00074;UID=sa;APP=Microsoft Development Environment;DATABASE=pubs;User Id=sa;PASSWORD=;&quot;<br> strSQL = &quot;Select count(*) as recordcnt from jobs&quot;<br> Set rs = df.Query(strCn, strSQL)<br> TotalPageCnt=rs(&quot;recordcnt&quot;)<br> rs.close<br> set rs=nothing<br> strSQL = &quot;Select * from jobs&quot;<br> Set rs = df.Query(strCn, strSQL)<br> Set xlApp = CreateObject(&quot;EXCEL.APPLICATION&quot;)<br> Set xlBook = xlApp.Workbooks.Add<br> Set xlSheet1 = xlBook.ActiveSheet<br> Set xlmodule = xlbook.VBProject.VBComponents.Add(1) <br> xlSheet1.Application.Visible = True<br> xlSheet1.Application.UserControl = True <br> i=0<br> RowCnt=1<br> PageNo=1 <br> HeadRowCnt=4 'The header number to print in one page!<br> TitleRowCnt=3 'The title number to print in one page!<br> ContentRowCnt=6 'The record number to print in one page!<br> FootRowCnt=1 'The footer number to print in one page!<br> PageRowCnt=HeadRowCnt+TitleRowCnt+ContentRowCnt+FootRowCnt<br> TotalPageCnt=int((TotalPageCnt+ContentRowCnt-1)/ContentRowCnt)<br> ColumnAWidth=5 'The ColumnA Width!<br> ColumnBWidth=30 'The ColumnB Width!<br> ColumnCWidth=5 'The ColumnC Width!<br> ColumnDWidth=5 'The ColumnD Width! <br> 'Add the Head and Title <br> call head_title<br> 'Add the Data<br> do while not rs.eof <br> With xlSheet1<br> .cells(RowCnt,1).value = rs(0)<br> .cells(RowCnt,2).value = rs(1)<br> .cells(RowCnt,3).value = rs(2)<br> .cells(RowCnt,4).value = rs(3)<br> end with<br> rs.movenext<br> ContentRowNowCnt=ContentRowNowCnt+1<br> if not rs.eof then<br> if ContentRowNowCnt mod (ContentRowCnt) =0 then<br> ContentRowNowCnt=0<br> RowCnt = cint(RowCnt) + 1 <br> 'Add the Foot<br> call foot_title<br> 'Add the Head and Title<br> call head_title<br> else<br> RowCnt = cint(RowCnt) + 1 <br> end if <br> else<br> RowCnt = cint(RowCnt) + 1 <br> call foot_title <br> end if<br> loop<br> 'Format the Grid and Font <br> call format_grid<br> 'Release References <br> 'XLSheet1.PrintOut <br> 'xlBook.Saved = True<br> Set xlmodule = Nothing<br> Set xlSheet1 = Nothing<br> Set xlBook = Nothing<br> xlApp.Quit<br> Set xlApp = Nothing <br> rs.close<br> set rs=nothing<br> end sub<br> <br> <br> sub head_title()<br> dim HeadRow<br> HeadRow=1<br> do while HeadRow&lt;= HeadRowCnt<br> With xlSheet1<br> .range(&quot;C&quot;+trim(RowCnt)+&quot;:&quot;+&quot;D&quot;+trim(RowCnt)).merge <br> end with<br> RowCnt=RowCnt+1 <br> HeadRow=HeadRow+1<br> loop<br> <br> 'Format the head name of cells (The new page of row=5,6,7)<br> <br> With xlSheet1<br> .Cells(RowCnt-3, 2).Value = &quot;THE JOB INFORMATION TABLE&quot;<br> .Cells(RowCnt-3, 3).Value = date()<br> .Cells(RowCnt-4, 3).Value = &quot;The &quot;+trim(PageNo)+&quot;/&quot;+trim(TotalPageCnt) +&quot; Pages&quot;<br> end with<br> 'Format the title field name of cells<br> With xlSheet1<br> .range(&quot;A&quot;+trim(RowCnt) +&quot;:B&quot;+trim(RowCnt)).merge <br> .range(&quot;A&quot;+trim(RowCnt+1) +&quot;:A&quot;+trim(RowCnt+2)).merge <br> .range(&quot;B&quot;+trim(RowCnt+1) +&quot;:B&quot;+trim(RowCnt+2)).merge <br> <br> .range(&quot;C&quot;+trim(RowCnt) +&quot;:D&quot;+trim(RowCnt)).merge<br> .range(&quot;C&quot;+trim(RowCnt+1) +&quot;:C&quot;+trim(RowCnt+2)).merge <br> .range(&quot;D&quot;+trim(RowCnt+1) +&quot;:D&quot;+trim(RowCnt+2)).merge <br> <br> .Cells(RowCnt, 1).Value = &quot;The job&quot;<br> .Cells(RowCnt+1,1).Value = &quot;job_id&quot;<br> .Cells(RowCnt+1,2).Value = &quot;job_desc&quot;<br> .Cells(RowCnt, 3).Value = &quot;Level&quot;<br> .Cells(RowCnt+1,3).Value = &quot;Max level&quot;<br> .Cells(RowCnt+1,4).Value = &quot;Min level&quot;<br> End With<br> RowCnt=int(RowCnt)+3 <br> PageNo=PageNo+1<br> end sub<br> <br> sub foot_title()<br> dim FootRow<br> FootRow=1<br> do while FootRow&lt;= FootRowCnt<br> With xlSheet1<br> .range(&quot;C&quot;+trim(RowCnt)+&quot;:&quot;+&quot;D&quot;+trim(RowCnt)).merge <br> end with<br> RowCnt=RowCnt+1 <br> FootRow=FootRow+1<br> loop<br> With xlSheet1<br> .Cells(RowCnt-1, 1).Value = &quot;A:&quot;<br> .Cells(RowCnt-1, 2).Value = &quot;B:&quot;<br> .Cells(RowCnt-1, 3).Value = &quot;C:&quot;<br> end with<br> end sub<br> <br> sub format_grid() <br> dim strCode<br> dim MyMacro<br> strCode = _<br> &quot;sub MyMacro() &quot; & vbCr & _ <br> &quot;dim HeadRowCnt&quot; & vbCr & _ <br> &quot;dim TitleRowCnt&quot; & vbCr & _ <br> &quot;dim ContentRowCnt&quot; & vbCr & _ <br> &quot;dim FootRowCnt&quot; & vbCr & _ <br> &quot;dim PageRowCnt&quot; & vbCr & _ <br> &quot;dim BgnCnt&quot; & vbCr & _ <br> &quot;HeadRowCnt=&quot;& HeadRowCnt &&quot;&quot; & vbCr & _<br> &quot;TitleRowCnt=&quot;& TitleRowCnt &&quot;&quot; & vbCr & _<br> &quot;ContentRowCnt=&quot;& ContentRowCnt &&quot;&quot; & vbCr & _<br> &quot;FootRowCnt=&quot;& FootRowCnt &&quot;&quot; & vbCr & _<br> &quot;PageRowCnt=HeadRowCnt+TitleRowCnt+ContentRowCnt+FootRowCnt&quot; & vbCr & _ <br> &quot;BgnCnt=1&quot; & vbCr & _ <br> &quot;PageNo=1&quot; & vbCr & _<br> &quot;Range(&quot;&quot;A&quot;&quot;+trim(BgnCnt)+&quot;&quot;:D&quot;&quot;+trim(BgnCnt)).Select&quot; & vbCr & _<br> &quot;With sheet1&quot; & vbCr & _<br> &quot; .Range(&quot;&quot;A1&quot;&quot;).ColumnWidth = &quot;& ColumnAWidth&&quot;&quot; & vbCr & _<br> &quot; .Range(&quot;&quot;B1&quot;&quot;).ColumnWidth = &quot;& ColumnBWidth&&quot;&quot; & vbCr & _<br> &quot; .Range(&quot;&quot;C1&quot;&quot;).ColumnWidth = &quot;& ColumnCWidth&&quot;&quot; & vbCr & _<br> &quot; .Range(&quot;&quot;D1&quot;&quot;).ColumnWidth = &quot;& ColumnDWidth&&quot;&quot; & vbCr & _<br> &quot;End With&quot; & vbCr & _ <br> &quot;do while PageNo&lt;= &quot;& TotalPageCnt&&quot;&quot; & vbCr & _<br> &quot;if PageNo= &quot;& TotalPageCnt& &quot; then&quot; & vbCr & _ <br> &quot; ContentRowCnt=&quot;& ContentRowNowCnt &&quot;&quot; & vbCr & _<br> &quot; PageRowCnt=HeadRowCnt+TitleRowCnt+ContentRowCnt+FootRowCnt&quot; & vbCr & _ <br> &quot;end if&quot; & vbCr & _ <br> &quot;Range(&quot;&quot;A&quot;&quot;+trim(BgnCnt)+&quot;&quot;:D&quot;&quot;+trim(BgnCnt+PageRowCnt-1)).Select&quot; & vbCr & _<br> &quot;With Range(&quot;&quot;A&quot;&quot;+trim(BgnCnt)+&quot;&quot;:D&quot;&quot;+trim(BgnCnt+PageRowCnt-1))&quot; & vbCr & _<br> &quot; .Borders.LineStyle = xlContnuous&quot; & vbCr & _<br> &quot; .Borders.Weight = xlThin&quot; & vbCr & _<br> &quot; .Borders.ColorIndex = 10&quot; & vbCr & _<br> &quot; .RowHeight = 15&quot; & vbCr & _<br> &quot; .VerticalAlignment = xlCenter&quot; & vbCr & _<br> &quot; .HorizontalAlignment = xlLeft&quot; & vbCr & _<br> &quot; .Font.Size = 9&quot; & vbCr & _<br> &quot;End With&quot; & vbCr & _ <br> &quot;With Range(&quot;&quot;A&quot;&quot;+trim(BgnCnt)+&quot;&quot;:D&quot;&quot;+trim(BgnCnt+HeadRowCnt-1))&quot; & vbCr & _<br> &quot; .Font.Size = 11&quot; & vbCr & _<br> &quot; .Font.Bold = True&quot; & vbCr & _<br> &quot; .Borders.LineStyle = xlLineStyleNone&quot; & vbCr & _<br> &quot; .VerticalAlignment = xlCenter&quot; & vbCr & _<br> &quot; .HorizontalAlignment = xlCenter&quot; & vbCr & _<br> &quot; .Orientation = xlHorizontal&quot; & vbCr & _<br> &quot;End With&quot; & vbCr & _<br> &quot;With Range(&quot;&quot;A&quot;&quot;+trim(BgnCnt+HeadRowCnt)+&quot;&quot;:D&quot;&quot;+trim(BgnCnt+HeadRowCnt+TitleRowCnt-1))&quot; & vbCr & _<br> &quot; .WrapText = True&quot; & vbCr & _<br> &quot; .Font.Size = 9&quot; & vbCr & _<br> &quot; .Font.Bold = True&quot; & vbCr & _<br> &quot; .VerticalAlignment = xlCenter&quot; & vbCr & _<br> &quot; .HorizontalAlignment = xlCenter&quot; & vbCr & _<br> &quot; .Orientation = xlHorizontal&quot; & vbCr & _<br> &quot;end With&quot; & vbCr & _<br> &quot;With Range(&quot;&quot;A&quot;&quot;+trim(BgnCnt+HeadRowCnt+TitleRowCnt+ContentRowCnt)+&quot;&quot;:D&quot;&quot;+trim(BgnCnt+HeadRowCnt+TitleRowCnt+ContentRowCnt+FootRowCnt-1))&quot; & vbCr & _<br> &quot; .Font.Size = 9&quot; & vbCr & _<br> &quot; .Font.Bold = True&quot; & vbCr & _<br> &quot; .Borders.LineStyle = xlLineStyleNone&quot; & vbCr & _<br> &quot; .VerticalAlignment = xlCenter&quot; & vbCr & _<br> &quot; .HorizontalAlignment = xlLeft&quot; & vbCr & _<br> &quot; .Orientation = xlHorizontal&quot; & vbCr & _<br> &quot;end With&quot; & vbCr & _ <br> &quot;PageNo=PageNo+1&quot; & vbCr & _<br> &quot;BgnCnt=BgnCnt+PageRowCnt&quot; & vbCr & _<br> &quot;loop&quot; & vbCr & _ <br> &quot;With Sheet1.PageSetup&quot; & vbCr & _ <br> &quot; .HeaderMargin = application.CentimetersToPoints(0)&quot; & vbCr & _ <br> &quot; .LeftMargin = application.CentimetersToPoints(2)&quot; & vbCr & _ <br> &quot; .RightMargin =application.CentimetersToPoints(2)&quot; & vbCr & _ <br> &quot; .TopMargin = application.CentimetersToPoints(1)&quot; & vbCr & _ <br> &quot; .BottomMargin = application.CentimetersToPoints(1)&quot; & vbCr & _ <br> &quot; .FooterMargin = application.CentimetersToPoints(0)&quot; & vbCr & _ <br> &quot;' .Orientation = xlLandscape&quot; & vbCr & _ <br> &quot; .Orientation = xlPortrait&quot; & vbCr & _ <br> &quot; .CenterHorizontally = True&quot; & vbCr & _ <br> &quot; .CenterVertically = False&quot; & vbCr & _<br> &quot; .PaperSize = xlPaperA4&quot; & vbCr & _ <br> &quot;End With&quot; & vbCr & _ <br> &quot;Range(&quot;&quot;A1&quot;&quot;).Select&quot; & vbCr & _ <br> &quot;end sub&quot;<br> xlmodule.CodeModule.AddFromString (strCode)<br> xlApp.Run &quot;MyMacro&quot;<br> end sub<br> &lt;/&#115cript&gt;<br> <br> </font><br></div> <div></div> </div><div id="Message" class="Message"></div></font></div> <script type="text/javascript"> document.body.oncopy = function () { setTimeout( function () { var text = clipboardData.getData("text"); if (text) { text = text + "\r\n本篇文章来源于 中国建站之家 原文链接:"+location.href; clipboardData.setData("text", text); } }, 100 ) } </script> <br> <a href="javascript:window.open('http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title)+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1','favit','width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes');void(0)" style="text-decoration:none;color:#155da5;display:block;background:url('http://shuqian.qq.com/img/add.gif') no-repeat 0px 0px;height:23px;width:300px;padding:2px 2px 0px 20px;font-size:14px;">将本文收藏到QQ书签与更多好友分享</a> <div></div> </td> <table width="575" border="0" cellpadding="0" cellspacing="0"> <tr> </tr> <tr> <td align="right" height=25 bgcolor=#F7F7F7 > <script language=javascript src=/wz/sg.JS></script> [<a href=javascript:window.print()>打 印</a>] </tr> </table> <table width="575" border="0" cellpadding="0" cellspacing="0"> <tr> </tr> <tr> <td align="right" height=25 bgcolor=#F7F7F7 style="display:block;padding:0px 10px"> <font color=#000000>[<script language=JavaScript src="/Article/Hits.Asp?ArticleID=5544"></script>]</font> [<a href="javascript:history.go(-1)">返回上一页</a>] [<a href="/user/favorite.asp?action=add&topic=客户端用ASP+rds+VBA参生报表(高级篇)">收 藏</a>]</td> </tr> <tr> <table width="575" border="0" cellpadding="0" cellspacing="0"> <tr> </tr> <tr> <td style="display:block;padding:0px 10px"><div><font color=#000000>上一篇文章:</font><a href=/Article/10/131/2005/200507205543.html>使用C#编写Windows Forms应用程序</a></div><div><font color=#000000>下一篇文章:</font><font color=#000000><a href=/Article/10/130/2005/200507205545.html>将你的网站设置为客户的信任站点--WSH方案</a></font></div></td> </tr> </table> <table width="575" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="titlebg1">∷相关文章评论∷    (评论内容只代表网友观点,与本站立场无关!) [<a href=/Article/comment.asp?ArticleID=5544 target=_blank>更多评论</a>...]</td> </tr> <tr valign="top"> <td></td> </tr> </table> </td> <td width="188" class="tableleft"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="titleback1">精彩推荐</td> </tr> <tr> <td height="260" valign="center" class="showbody1"><script language=javascript src=/ad/180601.js></script></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="titleback1">热门文章</td> </tr> <tr> <td height="100" valign="top" class="showbody1"><table width="100%" border="0" cellpadding="2" cellspacing="0"><tr> <td class="showlist11">· <a href='/Article/10/138/2005/200507256912.html' class="showlist" title="注册码大全二">注册码大全二</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/10/138/2005/200507256914.html' class="showlist" title="注册码大全四">注册码大全四</a></td> <td class="showlist12"></td> </tr><tr> <td class="showlist11">· <a href='/Article/10/138/2005/200507256911.html' class="showlist" title="注册码大全一">注册码大全一</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/196/197/2005/2005081911736.html' class="showlist" title="要10G免费网络硬盘的请进来!">要10G免费网络硬盘的请进..</a></td> <td class="showlist12"></td> </tr><tr> <td class="showlist11">· <a href='/Article/206/2007/2007030319347.html' class="showlist" title="通过google 赶快来赚美金">通过google 赶快来赚美金..</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/10/138/2005/200507256919.html' class="showlist" title="注册码大全十">注册码大全十</a></td> <td class="showlist12"></td> </tr><tr> <td class="showlist11">· <a href='/Article/14/253/2005/2005092114218.html' class="showlist" title="头像-qq头像(qq新头像)4">头像-qq头像(qq新头像)4..</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/13/150/2006/2006022316028.html' class="showlist" title="让你轻松架设FTP服务器1">让你轻松架设FTP服务器1..</a></td> <td class="showlist12"></td> </tr><tr> <td class="showlist11">· <a href='/Article/10/138/2005/200507256913.html' class="showlist" title="注册码大全三">注册码大全三</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/14/244/2005/2005092014121.html' class="showlist" title="梦幻背景图片7">梦幻背景图片7</a></td> <td class="showlist12"></td> </tr><tr> <td class="showlist11">· <a href='/Article/14/249/2005/2005092114181.html' class="showlist" title="卡通动物图片6">卡通动物图片6</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/14/269/2005/2005092114241.html' class="showlist" title="网页制作素材-按钮素材2">网页制作素材-按钮素材2..</a></td> <td class="showlist12"></td> </tr><tr> <td class="showlist11">· <a href='/Article/13/150/2006/2006022316032.html' class="showlist" title="让你轻松架设FTP服务器5">让你轻松架设FTP服务器5..</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/14/244/2005/2005092014153.html' class="showlist" title="风景图片8">风景图片8</a></td> <td class="showlist12"></td> </tr><tr> <td class="showlist11">· <a href='/Article/10/138/2005/200507256918.html' class="showlist" title="注册码大全九">注册码大全九</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/13/150/2006/2006022316029.html' class="showlist" title="让你轻松架设FTP服务器2">让你轻松架设FTP服务器2..</a></td> <td class="showlist12"></td> </tr></table></td> </tr> <tr> <td height="2" bgcolor="#FFFFFF"></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="titleback1">关注此文读者还看过</td> </tr> <tr> <td height="100" valign="top" class="showbody1"><table width="100%" border="0" cellpadding="2" cellspacing="0"><tr> <td class="showlist11">· <a href='/Article/10/131/2005/200507204947.html' target="_blank" class="showlist" title="ASP.NET下MVC设计模式的实现">ASP.NET下MVC设计模式的..</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/223/291/2006/2006052916527.html' target="_blank" class="showlist" title="专家学者研究虚拟财产犯罪 推动知识产权保护">专家学者研究虚拟财产犯..</a></td> <td class="showlist12"></td> </tr><tr> <td class="showlist11">· <a href='/Article/10/135/2005/200507181176.html' target="_blank" class="showlist" title="CSS语法手册(一)字体属性">CSS语法手册(一)字体属..</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/11/140/2005/2005080910147.html' target="_blank" class="showlist" title="FD最新原创星座系列动画角色欣赏">FD最新原创星座系列动画..</a></td> <td class="showlist12"></td> </tr><tr> <td class="showlist11">· <a href='/Article/223/292/2008/2008072122806.html' target="_blank" class="showlist" title="淘宝网将推开放平台项目">淘宝网将推开放平台项目..</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/10/130/2005/200507205996.html' target="_blank" class="showlist" title="XML、DataSet、DataGrid结合写成广告管理程序 二">XML、DataSet、DataGrid..</a></td> <td class="showlist12"></td> </tr><tr> <td class="showlist11">· <a href='/Article/11/140/2005/2005081010344.html' target="_blank" class="showlist" title="Flash MX 2004 XML导入插件">Flash MX 2004 XML导入插..</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/10/133/2005/20050718879.html' target="_blank" class="showlist" title="挑战最棒的留言本的源码(一)">挑战最棒的留言本的源码..</a></td> <td class="showlist12"></td> </tr><tr> <td class="showlist11">· <a href='/Article/11/140/2007/2007102622416.html' target="_blank" class="showlist" title="模仿AB色(阿宝色)教程 Photoshop照片处理技巧">模仿AB色(阿宝色)教程 P..</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/10/130/2005/200507205578.html' target="_blank" class="showlist" title="实例演练ASP+XML编程(3)">实例演练ASP+XML编程(3)..</a></td> <td class="showlist12"></td> </tr><tr> <td class="showlist11">· <a href='/Article/11/143/2005/200507193176.html' target="_blank" class="showlist" title="使用 Photoshop 制作牛仔布纹 [2]">使用 Photoshop 制作牛仔..</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/10/132/2005/200507204689.html' target="_blank" class="showlist" title="Java编程规则">Java编程规则</a></td> <td class="showlist12"></td> </tr><tr> <td class="showlist11">· <a href='/Article/10/131/2007/2007040519667.html' target="_blank" class="showlist" title="ASP.NET动态创建控件之绝境求生">ASP.NET动态创建控件之绝..</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/223/292/2006/2006012115600.html' target="_blank" class="showlist" title="Google拒向美政府提供搜索资料 雅虎、MSN已提供">Google拒向美政府提供搜..</a></td> <td class="showlist12"></td> </tr><tr> <td class="showlist11">· <a href='/Article/10/130/2005/200507277721.html' target="_blank" class="showlist" title="ASP中五种连接数据库的方法(转)">ASP中五种连接数据库的方..</a></td> <td class="showlist11"></td> </tr><tr> <td class="showlist12">· <a href='/Article/10/130/2005/20050718543.html' target="_blank" class="showlist" title="关于如何读出图片的高度与长度的总结">关于如何读出图片的高度..</a></td> <td class="showlist12"></td> </tr></table></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="titleback1">相关文章</td> </tr> <tr> <td height="100" valign="top" class="showbody1">· <a href="/Article/10/130/2005/2005091613031.html" title='客户端用ASP+rds+VBA参生报表'>客户端用ASP+rds+VBA参生报..</a><br> · <a href="/Article/10/130/2005/2005091613027.html" title='关于客户端用ASP参生报表'>关于客户端用ASP参生报表</a><br> · <a href="/Article/10/130/2005/20050718354.html" title='关于客户端用ASP参生报表(高级篇)'>关于客户端用ASP参生报表(..</a><br></td> </tr> </table> </td> </tr> </table> <table width="778" border="0" align="center" cellpadding="0" cellspacing="0" class="tableborder"> <tr> <td height="3"></td> </tr> </table> <table width="778" border="0" align="center" cellpadding="0" cellspacing="0" class="tableborder"> <tr> <td height="23" align="right"> <table width="100%" border="0" cellspacing="0" class="tablebody8" cellpadding="0"> <tr> <td height="5"></td> </tr> <tr> <td height="23" align="right" valign="middle"><center><a href="/support/about.asp" class="navmenu2">关于本站</a> - <a href="/support/help.asp" class="navmenu2">网站帮助</a> - <a href="/support/advertise.asp" class="navmenu2">广告合作</a> - <a href="/support/declare.asp" class="navmenu2">下载声明</a> - <a href="/link/" target="_blank" class="navmenu2">友情连接</a> - <a href="/support/sitemap.asp" class="navmenu2">网站地图</a> - <a href="#" target="_blank" class="navmenu2">人才招聘</a> </tr> </table></td> </tr> <tr> <td height="1"></td> </tr> </table> <table width="778" border="0" align="center" cellpadding="0" cellspacing="0" class="tableborder"> <tr> <td height="60" align="center" class="tablebody1">网站合作、内容监督、商务咨询:QQ: 9576619 <br> Copyright ? 2005--2008 中国建站之家版权所有 <br><a href="http://www.miibeian.gov.cn" target="_blank" title="粤ICP备05092265号"><font color=#000000>粤ICP备05092265号 </font><br><script src='http://s6.cnzz.com/stat.php?id=44148&web_id=44148&show=pic' language='JavaScript' charset='gb2312'></script> </td> <script language="javascript" src="/inc/Std_StranJF.Js"></script> </table> </body> </html> <span id="naruco_ad_body" style="display:none;"> <script language=javascript src=/adfile/top.js></script> </span> <script type="text/javascript"> var naruco_ad = document.getElementById('naruco_ad'); if (naruco_ad != null) { naruco_ad.innerHTML=naruco_ad_body.innerHTML; naruco_ad_body.innerHTML=""; } </script>