Dreamweaver能不能实现与数据库交互或连接?

我想用Dreamweave建立一个表单提交到Access数据库中,应该怎样连接数据库。最好把完整的代码发给我看一下!非常感谢!... 我想用Dreamweave建立一个表单提交到Access数据库中,应该怎样连接数据库。最好把完整的代码发给我看一下!非常感谢! 展开
 我来答
猫喝的果粒橙
2006-11-15 · 超过70用户采纳过TA的回答
知道小有建树答主
回答量:155
采纳率:0%
帮助的人:201万
展开全部
可以的,你看一下“菜鸟学DW MX做ASP”系列教程:
站点设置篇:http://www2.zzsky.cn/education/html/63.htm
数据库设置:http://www2.zzsky.cn/education/html/64.htm
数据显示篇:http://www2.zzsky.cn/education/html/65.htm
注册系统篇:http://www2.zzsky.cn/education/html/66.htm
登录系统篇:http://www2.zzsky.cn/education/html/67.htm
忘记密码篇:http://www2.zzsky.cn/education/html/68.htm
修改资料篇:http://www2.zzsky.cn/education/html/69.htm
大鹏展翅Gavin
2006-11-15
知道答主
回答量:24
采纳率:0%
帮助的人:22万
展开全部
可以的,里边有好多功能的,细心的去多实验就行了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Camels
2006-11-16
知道答主
回答量:22
采纳率:0%
帮助的人:13万
展开全部
<%
dim conn
dim connstr
connstr="DBQ="+server.mappath("\awas\awasshjv\#system.mdb")+";DefaultDir=;DRIVER={Microsoft Access Driver (*.mdb)};"
set conn=server.createobject("ADODB.CONNECTION")
conn.open connstr
dim nowtime
nowtime=now()
sj=cstr(year(nowtime))+"年"+right("0"+cstr(month(nowtime)),2)+"月"+right("0"+cstr(day(nowtime)),2)+"日"
function checkstr(checkstr_s)
set strs=new regexp
strs.pattern="^[A-Za-z0-9]+$"
if strs.test(checkstr_s)=false then
response.write"<script>alert('对不起您没有登录或登录超时');window.location='index.asp'</script>"
response.end()
end if
checkstr=checkstr_s
end function

function logsys(xx)
set rs=server.createobject("adodb.recordset")
sql="select * from history"
rs.open sql,conn,1,3
rs.addnew
rs("hdate")=now()
rs("htext")=xx
rs("happly")=session("aname")
rs("address")=ips()
rs.update
rs.close
set rs=nothing
end function

function ips()
userip = Request.ServerVariables("HTTP_X_FORWARDED_FOR")
If userip = "" Then userip = Request.ServerVariables("REMOTE_ADDR")
ips=userip
end function

function m_id(m_id_t)
set m_id_rs=conn.execute("select top 1 id from "&m_id_t&" order by id desc")
if m_id_rs.eof then
m_id=1
else
m_id=m_id_rs("id")+1
end if
m_id_rs.close
set m_id_rs=nothing
end function

dim fx,fstr
for each fx in request.QueryString()
fstr=request.QueryString(fx)
fstr=replace(fstr,"%27","‘")
if instr(fstr,"'")>0 or instr(fstr,"select ")>0 or instr(fstr,"net user")>0 or instr(fstr,"xp_cmdshell")>0 or instr(fstr,"/add")>0 or instr(fstr,"exec master.dbo.xp_cmdshell")>0 or instr(fstr,"net localgroup administrators")>0 or instr(fstr,"%")>0 or instr(fstr,"delete")>0 or Instr(fstr,"insert 20")>0 or Instr(fstr,"delete from")>0 or Instr(fstr,"count(")>0 or Instr(fstr,"drop table")>0 or Instr(fstr,"update ")>0 or Instr(fstr,"truncate ")>0 or Instr(fstr,"asc(")>0 or Instr(fstr,"mid(")>0 or Instr(fstr,"char(")>0 or Instr(fstr,":")>0 or Instr(fstr," or ")>0 or Instr(fstr," and ")>0then
response.Write("<script>alert('请不要输入特殊字符!');window.close()</script>")
response.End()
end if
next
for each fx in request.Form()
fstr=request.Form(fx)
fstr=replace(fstr,"%27","‘")
fstr=replace(fstr,"'","‘")
fstr=replace(fstr,"<","〈")
fstr=replace(fstr,">","〉")
if instr(fstr,"select%20")>0 or instr(fstr,"net%20user")>0 or instr(fstr,"xp_cmdshell")>0 or instr(fstr,"/add")>0 or instr(fstr,"exec%20master.dbo.xp_cmdshell")>0 or instr(fstr,"net%20localgroup%20administrators")>0 or instr(fstr,"delete")>0 or Instr(fstr,"insert%20")>0 or Instr(fstr,"delete%20from")>0 or Instr(fstr,"count(")>0 or Instr(fstr,"drop%20table")>0 or Instr(fstr,"update%20")>0 or Instr(fstr,"truncate%20")>0 or Instr(fstr,"asc(")>0 or Instr(fstr,"mid(")>0 or Instr(fstr,"char(")>0 or Instr(fstr,"%20or%20")>0 then
response.Write("<script>alert('请不要输入特殊字符!');window.close()</script>")
response.End()
end if
next
function isnumber(isnumber_id)

if isnumeric(isnumber_id)=true then
isnumber=isnumber_id
else
response.write "<script language=javascript>alert('请不要恶意访问本网站');</script>请不要恶意访问本网站"
response.end
end if

end function
%>
这是我的一个链接库的文件,赠送你一些验证的代码
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友c547160
2006-11-15 · TA获得超过1377个赞
知道小有建树答主
回答量:2447
采纳率:0%
帮助的人:2121万
展开全部
当然可以啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友19a2f9abc
2006-11-15 · 超过39用户采纳过TA的回答
知道答主
回答量:159
采纳率:0%
帮助的人:0
展开全部
可以的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式