我遇到了一个似乎无法解决的问题。
我有一个ASP页面,该页面具有一个while循环来打印来自数据库的动态数据,特别是诸如此类的复选框;
// form open up here
<% do while not rs.EOF %>
<input type="checkbox" name="checkbox" data-id="<%=rs.Fields("this_id")">
<%
rs.movenext()
loop
%>
// form end down here
在页面底部,我有一些类似的jQuery;
$('#removestuff').click(function(e) {
$("#thisform").submit(function(e) {
var url = "functions.asp";
$.ajax({
type: "POST",
url: url,
data: $("#thisform").serialize(),
success: function(data) {
}
});
e.preventDefault();
});
});
我有这个功能,因为我有几个按钮可以执行几种不同的操作。
我有2个问题;
我只想做的是Response.Write
每个'id'
在正确方向上的任何帮助将不胜感激。
谢谢