⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 showcode.asp@source=demo_ado_getrows

📁 W3Schools tutorial..web designing
💻 ASP@SOURCE=DEMO_ADO_GETROWS
字号:


<HTML>
<HEAD></HEAD>
<FONT FACE="Verdana, Arial, Helvetica" SIZE=2>
&lt;html><br />&lt;body><br /><br /><FONT COLOR=#ff0000>&lt;%<br />set conn=Server.CreateObject("ADODB.Connection")<br />conn.Provider="Microsoft.Jet.OLEDB.4.0"<br />conn.Open(Server.Mappath("/db/northwind.mdb"))<br />set rs = Server.CreateObject("ADODB.recordset")<br />rs.Open "Select * from Customers", conn<br /><br />'The first number indicates how many records to copy<br />'The second number indicates what recordnumber to start on<br />p=rs.GetRows(2,0)<br /><br />response.write("&lt;p>This example returns the value of the first column in the first two records:&lt;/p>")<br />response.write(p(0,0))<br />response.write("&lt;br />")<br />response.write(p(0,1))<br /><br />response.write("&lt;p>This example returns the value of the first three columns in the first record:&lt;/p>")<br />response.write(p(0,0))<br />response.write("&lt;br />")<br />response.write(p(1,0))<br />response.write("&lt;br />")<br />response.write(p(2,0))<br /><br />rs.close<br />conn.close<br />%&gt;</FONT><br /><br />&lt;/body><br />&lt;/html><br />

</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -