gpt4 book ai didi

使用经典 .asp 的 jquery 数据表

转载 作者:行者123 更新时间:2023-12-01 07:35:27 24 4
gpt4 key购买 nike

我正在尝试让 jquery 数据表插件使用 VBScript 而不是 PHP 来提取数据,如其网站上所示。有没有人对从哪里开始有任何建议,或者可能已经在其他地方看到了这一点?

任何帮助都会很棒!

最佳答案

我不确定您对 javascript grid/ajax 模型有多熟悉,所以这里是一个概述:

1) 您有一个包含表格的 (X)HTML 页面(可能由经典 asp 呈现):

<table id="tableIDhere">
<thead>
<tr>
<th>Rendering engine</th>
<th>Browser</th>
<th>Platform(s)</th>
<th>Engine version</th>
<th>CSS grade</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="5" class="dataTables_empty">Loading data from server</td>
</tr>
</tbody>
</table>

2) 然后进行 jQuery 调用,以通过数据网格预期的行为来增强表格

$(document).ready(function() {
$('#tableIDhere').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "../name_of_your_asp_page.asp"
} );
} );

3) 当 jquery 数据网格初始化时,它将调用您的经典 asp 页面 (../name_of_your_asp_page.asp),期望数据网格使用特定格式的数据

{"sEcho": 3, 
"iTotalRecords": 57,
"iTotalDisplayRecords": 57,
"aaData": [
["Other browsers","All others","-","-","U"],
["Misc","NetFront 3.1","Embedded devices","-","C"],
["Misc","NetFront 3.4","Embedded devices","-","A"]
]
}

我不确定你通常如何与数据库交互(通过存储过程/脚本化 SQL 等),如果你不确定我会首先考虑使用像 ajaxed asp library 这样的库。 - 这应该会给你一个良好的开端。

希望这可以帮助您开始

关于使用经典 .asp 的 jquery 数据表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2401226/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com