这个代码什么意思<input type="hidden" name="id" value="<%=rs("id")%>">
<!--#includefile="conn.asp"--><%sql="select*fromstudent_infowhereid="&request.QuerySt...
<!--#include file="conn.asp" -->
<%
sql="select * from student_info where id="&request.QueryString("id")
rs.open sql,conn,1,1
%>
<%
name=Request("name")
age=Request("age")
pid=Request("pid")
rs.open "student_info",conn,1,3
rs.addnew
rs("name") = name
rs("age") = age
rs("pid") = pid
rs.update
rs.close
%> 分别是什么意思呢
<!--#include file="conn.asp" -->
<%
if Trim(Request.Querystring("w"))="del" then
sql ="delete from student_info where id="&Request.Querystring("id")
conn.execute(sql)
end if
sql="select * from student_info order by 时间 desc"
set list=conn.EXECUTE(SQL)
%>
<% DO WHILE NOT list.EOF %>
<tr>
<td width="40" height="25">
<fontcolor="#FF0000"><%=List("ID") %>
</font></td>
<td width="140" height="25"><%=List("名字") %></td>
<td width="50" height="25"><%= list("年龄") %></td>
<td width="140" height="25"><%=List("专业") %></td>
<td width="58" height="25"><a href="student_mod.html?id=<%= list("id") %>">修改</a></td>
<td width="35" height="25"><a href="student_list.sap?w=del&id=<%=list("id")%>">删除</a></td>
</tr>
<% List.movenext
loop
%> 拜拜托知道的大侠详细的说下~感激~~~ 展开
<%
sql="select * from student_info where id="&request.QueryString("id")
rs.open sql,conn,1,1
%>
<%
name=Request("name")
age=Request("age")
pid=Request("pid")
rs.open "student_info",conn,1,3
rs.addnew
rs("name") = name
rs("age") = age
rs("pid") = pid
rs.update
rs.close
%> 分别是什么意思呢
<!--#include file="conn.asp" -->
<%
if Trim(Request.Querystring("w"))="del" then
sql ="delete from student_info where id="&Request.Querystring("id")
conn.execute(sql)
end if
sql="select * from student_info order by 时间 desc"
set list=conn.EXECUTE(SQL)
%>
<% DO WHILE NOT list.EOF %>
<tr>
<td width="40" height="25">
<fontcolor="#FF0000"><%=List("ID") %>
</font></td>
<td width="140" height="25"><%=List("名字") %></td>
<td width="50" height="25"><%= list("年龄") %></td>
<td width="140" height="25"><%=List("专业") %></td>
<td width="58" height="25"><a href="student_mod.html?id=<%= list("id") %>">修改</a></td>
<td width="35" height="25"><a href="student_list.sap?w=del&id=<%=list("id")%>">删除</a></td>
</tr>
<% List.movenext
loop
%> 拜拜托知道的大侠详细的说下~感激~~~ 展开
4个回答
展开全部
<!--#include file="conn.asp" --> 加载CONN.ASP文件
<%
sql="select * from student_info where id="&request.QueryString("id")
rs.open sql,conn,1,1
%> 在表student_info 查询 id=上文反馈回来的id信息
<%
name=Request("name")
age=Request("age")
pid=Request("pid") 接收上文的信息
rs.open "student_info",conn,1,3
rs.addnew
rs("name") = name
rs("age") = age
rs("pid") = pid 信息添加
rs.update
rs.close
%>
<!--#include file="conn.asp" --> 加载文件
<%
if Trim(Request.Querystring("w"))="del" then
sql ="delete from student_info where id="&Request.Querystring("id") 如果上文传回的字符为DEL 则进行删除操作
conn.execute(sql)
end if
sql="select * from student_info order by 时间 desc"
set list=conn.EXECUTE(SQL) 搜索信息按时间排序
%>
<% DO WHILE NOT list.EOF %> 循环显示信息
<tr>
<td width="40" height="25">
<fontcolor="#FF0000"><%=List("ID") %>
</font></td>
<td width="140" height="25"><%=List("名字") %></td>
<td width="50" height="25"><%= list("年龄") %></td>
<td width="140" height="25"><%=List("专业") %></td>
<td width="58" height="25"><a href="student_mod.html?id=<%= list("id") %>">修改</a></td>
<td width="35" height="25"><a href="student_list.sap?w=del&id=<%=list("id")%>">删除</a></td>
</tr>
<% List.movenext
loop
%> 结束!!!
<%
sql="select * from student_info where id="&request.QueryString("id")
rs.open sql,conn,1,1
%> 在表student_info 查询 id=上文反馈回来的id信息
<%
name=Request("name")
age=Request("age")
pid=Request("pid") 接收上文的信息
rs.open "student_info",conn,1,3
rs.addnew
rs("name") = name
rs("age") = age
rs("pid") = pid 信息添加
rs.update
rs.close
%>
<!--#include file="conn.asp" --> 加载文件
<%
if Trim(Request.Querystring("w"))="del" then
sql ="delete from student_info where id="&Request.Querystring("id") 如果上文传回的字符为DEL 则进行删除操作
conn.execute(sql)
end if
sql="select * from student_info order by 时间 desc"
set list=conn.EXECUTE(SQL) 搜索信息按时间排序
%>
<% DO WHILE NOT list.EOF %> 循环显示信息
<tr>
<td width="40" height="25">
<fontcolor="#FF0000"><%=List("ID") %>
</font></td>
<td width="140" height="25"><%=List("名字") %></td>
<td width="50" height="25"><%= list("年龄") %></td>
<td width="140" height="25"><%=List("专业") %></td>
<td width="58" height="25"><a href="student_mod.html?id=<%= list("id") %>">修改</a></td>
<td width="35" height="25"><a href="student_list.sap?w=del&id=<%=list("id")%>">删除</a></td>
</tr>
<% List.movenext
loop
%> 结束!!!
展开全部
<input type="hidden" name="id" value="<%=rs("id")%>">
这是隐藏文本域,目的就是为了传值
这是隐藏文本域,目的就是为了传值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
上面的是更新数据。下面的是显示。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
额。。。。asp代码
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |