隐藏域传值
<DIVid="N_Conpany"><UL><%setRs=server.CreateObject("adodb.recordset")ifrequest.QueryS...
<DIV id="N_Conpany">
<UL>
<%
set Rs=server.CreateObject("adodb.recordset")
if request.QueryString("S_Type")="" then
YearMonth=request.QueryString("Year")&request.QueryString("Month")
sql="select * from SuoYin where S_Type='加工中心' and YearMonth='"&YearMonth&"'"
else
sql="select * from SuoYin where S_Type='"&request.QueryString("S_Type")&"' and YearMonth='"&YearMonth&"'"
end if
Rs.open sql,conn,1,1
if Rs.eof then
response.Write("<li>暂无添加索引</li>")
else
do while not Rs.eof
%>
<LI>
<span><a href="Mod_S.asp?S_Type=<%=Rs("S_Type")%>&Year=<%=request.QueryString("Year")%>&Month=<%=request.QueryString("Month")%>&id=<%=Rs("id")%>">修改</a>
<a href="Manage_S.asp?Action=Del?id=<%=Rs("id")%>&Year=<%=request.QueryString("Year")%>&Month=<%=request.QueryString("Month")%>" onClick="return Del('确实要删除此记录吗?删除记录的同时删除图片!');">删除</a></span>
<%=Rs("S_CompanyName")%>
</LI>
<%Rs.movenext
loop
end if
%>
</UL>
</DIV>
这个页面点修改的时候进入修改页面
表单提交的时候设置了一个隐藏域 <input type="hidden" value="<%=request.QueryString("S_Type")%>" name="S_Type" />但修改后数据库中的S_Type字段值会重复比如说本来S_Type是加工中心的修改后变成加工中心,加工中心 展开
<UL>
<%
set Rs=server.CreateObject("adodb.recordset")
if request.QueryString("S_Type")="" then
YearMonth=request.QueryString("Year")&request.QueryString("Month")
sql="select * from SuoYin where S_Type='加工中心' and YearMonth='"&YearMonth&"'"
else
sql="select * from SuoYin where S_Type='"&request.QueryString("S_Type")&"' and YearMonth='"&YearMonth&"'"
end if
Rs.open sql,conn,1,1
if Rs.eof then
response.Write("<li>暂无添加索引</li>")
else
do while not Rs.eof
%>
<LI>
<span><a href="Mod_S.asp?S_Type=<%=Rs("S_Type")%>&Year=<%=request.QueryString("Year")%>&Month=<%=request.QueryString("Month")%>&id=<%=Rs("id")%>">修改</a>
<a href="Manage_S.asp?Action=Del?id=<%=Rs("id")%>&Year=<%=request.QueryString("Year")%>&Month=<%=request.QueryString("Month")%>" onClick="return Del('确实要删除此记录吗?删除记录的同时删除图片!');">删除</a></span>
<%=Rs("S_CompanyName")%>
</LI>
<%Rs.movenext
loop
end if
%>
</UL>
</DIV>
这个页面点修改的时候进入修改页面
表单提交的时候设置了一个隐藏域 <input type="hidden" value="<%=request.QueryString("S_Type")%>" name="S_Type" />但修改后数据库中的S_Type字段值会重复比如说本来S_Type是加工中心的修改后变成加工中心,加工中心 展开
1个回答
2008-07-05
展开全部
<DIV id="N_Conpany">
<UL>
<%
set Rs=server.CreateObject("adodb.recordset")
if request.QueryString("S_Type")="" then
YearMonth=request.QueryString("Year")&request.QueryString("Month")
sql="select * from SuoYin where S_Type='加工中心' and YearMonth='"&YearMonth&"'"
else
sql="select * from SuoYin where S_Type='"&request.QueryString("S_Type")&"' and YearMonth='"&YearMonth&"'"
end if
Rs.open sql,conn,1,1
if Rs.eof then
response.Write("<li>暂无添加索引</li>")
else
do while not Rs.eof
%>
<LI>
<span><a href="Mod_S.asp?S_Type=<%=Rs("S_Type")%>&Year=<%=request.QueryString("Year")%>&Month=<%=request.QueryString("Month")%>&id=<%=Rs("id")%>">修改</a>
<a href="Manage_S.asp?Action=Del?id=<%=Rs("id")%>&Year=<%=request.QueryString("Year")%>&Month=<%=request.QueryString("Month")%>" onClick="return Del('确实要删除此记录吗?删除记录的同时删除图片!');">删除</a></span>
<%=Rs("S_CompanyName")%>
</LI>
<%Rs.movenext
loop
end if
%>
</UL>
</DIV>
这个页面点修改的时候进入修改页面
表单提交的时候设置了一个隐藏域 <input type="hidden" value="<%=request.QueryString("S_Type")%>" name="S_Type" />但修改后数据库中的S_Type字段值会重复比如说本来S_Type是加工中心的修改后变成加工中心,加工中心
<UL>
<%
set Rs=server.CreateObject("adodb.recordset")
if request.QueryString("S_Type")="" then
YearMonth=request.QueryString("Year")&request.QueryString("Month")
sql="select * from SuoYin where S_Type='加工中心' and YearMonth='"&YearMonth&"'"
else
sql="select * from SuoYin where S_Type='"&request.QueryString("S_Type")&"' and YearMonth='"&YearMonth&"'"
end if
Rs.open sql,conn,1,1
if Rs.eof then
response.Write("<li>暂无添加索引</li>")
else
do while not Rs.eof
%>
<LI>
<span><a href="Mod_S.asp?S_Type=<%=Rs("S_Type")%>&Year=<%=request.QueryString("Year")%>&Month=<%=request.QueryString("Month")%>&id=<%=Rs("id")%>">修改</a>
<a href="Manage_S.asp?Action=Del?id=<%=Rs("id")%>&Year=<%=request.QueryString("Year")%>&Month=<%=request.QueryString("Month")%>" onClick="return Del('确实要删除此记录吗?删除记录的同时删除图片!');">删除</a></span>
<%=Rs("S_CompanyName")%>
</LI>
<%Rs.movenext
loop
end if
%>
</UL>
</DIV>
这个页面点修改的时候进入修改页面
表单提交的时候设置了一个隐藏域 <input type="hidden" value="<%=request.QueryString("S_Type")%>" name="S_Type" />但修改后数据库中的S_Type字段值会重复比如说本来S_Type是加工中心的修改后变成加工中心,加工中心
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询