| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 299 人关注过本帖
标题:不能更新数据库中的数据问题
只看楼主 加入收藏
wenmaile
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2010-5-29
收藏
 问题点数:0 回复次数:1 
不能更新数据库中的数据问题
index.asp
<table width="180" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <TD width=66
                            background=images/bj111.gif
                            bgColor=#f0f0f0>
                              <DIV align=center><STRONG><FONT
                              color=#666699>网上调查</FONT></STRONG></DIV></TD>
  </tr>
  <tr>
    <td ><table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr><%
        set rs=conn.execute("SELECT * from vote where IsChecked=1 ")
        if rs.eof then
        response.Write "暂无投票"
        else%>
        <td><div align="center"><b> <%=rs("Title")%></b></div></td>
      </tr>
      <tr>
        <td><table border="0" width="100%" cellspacing="2" cellpadding="2">
              <form action="vote.asp" target="newwindow" method=post name=research>
               <tr>
                <td valign=top width="100%"><%
for i=1 to 8
    if rs("Select"&i)<>"" then
%>
            <input style="border: 0" <%if i=1 then%>checked<%end if%> name=Options type=radio value=<%=i%>>
              <%=i%>.<%=rs("Select"&i)%><br>
  <%
    end if
next
%>               </td>
               </tr>
              <tr>
         <td width="100%" height=30 align=center><input type="image" border="0" name="submit" src="images/vote1.gif" width="59" height="19" style="cursor:hand"onClick="window.open('vote.asp?stype=view ','basket','menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=0,resizable=0,width=510,top=50,left=100,height=370')">
        <a href=# onClick="window.open('vote.asp?stype=view ','basket','menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=0,resizable=0,width=510,top=50,left=100,height=370')"><img src="images/vote.gif" width="59" height="19" border="0" /> </a></td>
            </tr>
              </form>
         </table>
   <%end if%> </td>
      </tr>
    </table></td>
  </tr>
</table>

vote.asp
<%dim options,total,sql,i,answer,action
if request.QueryString("stype")="" then
    if Request.ServerVariables("REMOTE_ADDR")=request.cookies("IPAddress") then
        options=request.form("options")
        response.cookies("IPAddress")=Request.ServerVariables("REMOTE_ADDR")
        conn.execute("UPDATE vote set answer"&options&"=answer"&options&"+1 where IsChecked=1")
    else
        options=request.form("options")
        response.cookies("IPAddress")=Request.ServerVariables("REMOTE_ADDR")
        conn.execute("UPDATE vote set answer"&options&"=answer"&options&"+1 where IsChecked=1")
    end if
end if
%>
请各位大侠看下,当在INDEX。ASP中提交意见后,不能更新数据库中相应的数据
搜索更多相关主题的帖子: 数据库 
2010-05-29 21:36
笨笨林
Rank: 6Rank: 6
等 级:贵宾
威 望:21
帖 子:482
专家分:408
注 册:2007-7-28
收藏
得分:0 
是不是数据库没有可写权限?

程序授权说明:http://www./authorization.php  无路难开路难。  帮助别人是快乐的,也只有帮助别人,才能得到别人的帮助。互相帮助,才能共同进步。
2010-05-30 09:24
快速回复:不能更新数据库中的数据问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.059334 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved