test.asp
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:2k
源码类别:

OA系统

开发平台:

Java

  1. <%@ LANGUAGE = VBScript %>
  2. <HTML xmlns:fc>
  3. <HEAD>
  4. <STYLE>
  5. @media all 
  6. {
  7.   fc:fc_code 
  8.   {
  9.     behavior: url(webprint/fc_code.htc) ;
  10.   }
  11.   fc:webprint 
  12.   {
  13.     behavior: url(webprint/webgrid.htc) ;
  14.   }
  15. }
  16. </STYLE>
  17. <SCRIPT ID=clientEventHandlersJS LANGUAGE=javascript>
  18. <!--
  19. function window_onload() {
  20. //初始化表格的位置
  21. grid.left=5
  22. grid.top=80
  23. grid.width=700
  24. grid.height=300
  25. }
  26. //-->
  27. </SCRIPT>
  28. </HEAD>
  29. <BODY  onload="return window_onload()">
  30. 用鼠标拖动可修改行高和列宽<BR>
  31. <input type=button value="打印" onclick="grid.print()"  >
  32.           
  33.     <%
  34.          mDBFile = "webprint/DataDB1.mdb"
  35.   mTable = "Publishers"
  36.   mQueryString = "SELECT Name,[Company Name],State FROM " & mTable
  37.   mMapPath = Server.MapPath(mDBFile)
  38.          Set oConn = Server.CreateObject("ADODB.Connection")
  39.          oConn.Open "PROVIDER=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & mMapPath & ";"
  40.          Set oRs = oConn.Execute(mQueryString)
  41.     %>
  42. <fc:webprint id="grid" > 
  43. <table id=t cellPadding=0 cellSpacing=0  frame=box style="BORDER-COLLAPSE: collapse; FONT-SIZE: 13px;   LEFT: 0px; POSITION:  absolute; TABLE-LAYOUT: fixed; TOP: 0px; " bgColor=white borderColor=black>
  44. <colgroup><col style="WIDTH: 150px"><col style="WIDTH: 350px"><col style="WIDTH: 50px"></colgroup>
  45. <tr style="height:21">
  46. <td>
  47. Name
  48. </td>
  49. <td>
  50. Company Name
  51. </td>
  52. <td>
  53. State
  54. </td>
  55. </tr>       
  56.            <%   
  57. '以下语句未执行,故得不到由数据库生成的表                
  58.                 Do while (Not oRs.eof) %>
  59.                      <tr style="height:21">
  60.                           <%  For Index=0 to (oRs.fields.count-1) %>
  61.                                <TD ><%Response.Write oRs(Index)%></TD>
  62.                           <%  Next %>
  63.                      </tr>             
  64.                      <%  oRs.MoveNext 
  65.                 Loop 
  66.            %>
  67.            </TABLE>
  68. </fc:webprint> 
  69.            <%    
  70.                 oRs.close
  71.                 oConn.close 
  72.            %>
  73.       </BODY>
  74. </HTML>