asp中传递、写入变量到数据库字段

一下是程序内容:*****************************************************************************... 一下是程序内容:
*******************************************************************************************
<%@LANGUAGE = VBScript.Encode%>
<!--#include file="Conn.asp"-->
<!--#include file="MD5.asp"-->
<%
'根据DDNS的用户名获取密码和IP地址
'DELPHI程序使用
dim rs,sql,username,userpass,regcode,active,password,founderr,msg
username=trim(request("name"))
password=MD5(trim(request("userpass")))
if username="" then
founderr=true
msg="必须输入DDNS用户名!"
if password="" then
founderr=true
msg="必须输入DDNS用户密码!"
cancel
else
founderr=false
end if
else
founderr=false
end if
if founderr=true then
response.write msg
else
set rs=Server.CreateObject("ADODB.RecordSet")
sql="select * from RR where UserName ='"&username&"'"
rs.open sql,conn,1,1
if rs.recordcount>0 then
if trim(rs("password"))=password then
if trim(rs("lastip"))<>""
then

response.write rs("lastip")

else
response.write "用户" &username & "尚未登录DDNS服务器!"
end if
else
response.write "DDNS用户密码错误!"
end if
else
response.write "DDNS用户名错误!"
end if
rs.close
set rs=nothing
end if
%>
*****************************************************************************************
问题:
其中lastip是一个客户端传递过来的ip地址,由这个页面的程序写入到access数据库中,在该数据库同一个表里还有个data的字段,也需要将这个ip信息写入进去,也就是说传递回来的数据是lastip,但我要同时写入到数据表RR里的lastip和data里去。请写出代码,正常运行立即送分感谢!
展开
 我来答
叫我流火
2015-05-19
知道答主
回答量:10
采纳率:0%
帮助的人:5.7万
展开全部
sql="insert into RR(lastip,data) values('"&lastip&"','"&lastip&"')"
运行这条sql语句即可,纯手打,请采纳
追问
请问加入到哪个位置,我加入了没反应
追答
我上面那句的意思就是,将lastip这个变量插入到表RR的lastip和data这两个字段,你要做的就是将这条sql运行,至于怎么运行,你自己想想,我对asp不了解,但是看你上面的代码,应该是rs.open sql等等一些数据库查询语句。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式