请问如何将值写入session中,或者将值传到另一页面中?
有一个上传的upfile.asp的页面,如何将页面中数据库查找到的值写入session中或者将值传到另一页面?代码如下:<!--#includefile="conn.as...
有一个上传的upfile.asp的页面,如何将页面中数据库查找到的值写入session中或者将值传到另一页面?
代码如下:
<!--#include file="conn.asp"-->
<!--#include file="upload.inc"-->
<html>
<head>
<title>文件上传</title>
</head>
<body>
<%
dim upload,file,formName,formPath,iCount,filename,fileExt
set upload=new upload_5xSoft ''建立上传对象
formPath=upload.form("filepath")
''在目录后加(/)
if right(formPath,1)<>"/" then formPath=formPath&"/"
response.write "<body>"
iCount=0
for each formName in upload.file ''列出所有上传了的文件
set file=upload.file(formName) ''生成一个文件对象
if file.filesize<100 then
response.write "请选择你要上传的文件 [ <a href=# onclick=history.go(-1)>重新上传</a> ]"
response.end
end if
if file.filesize>1000*1000 then
response.write "文件大小超过了限制1000K [ <a href=# onclick=history.go(-1)>重新上传</a> ]"
response.end
end if
fileExt=lcase(right(file.filename,4))
uploadsuc=false
Forum_upload="gif,jpg,png"
Forumupload=split(Forum_upload,",")
for i=0 to ubound(Forumupload)
if fileEXT="."&trim(Forumupload(i)) then
uploadsuc=true
exit for
else
uploadsuc=false
end if
next
if uploadsuc=false then
response.write "文件格式不正确 [ <a href=# onclick=history.go(-1)>重新上传</a> ]"
response.end
end if
randomize
ranNum=int(90000*rnd)+10000
filename=formPath&year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)&ranNum&fileExt
if file.FileSize>0 then ''如果 FileSize > 0 说明有文件数据
file.SaveAs Server.mappath(FileName) ''保存文件
for i=0 to ubound(Forumupload)
if fileEXT="."&trim(Forumupload(i)) then
response.write "<script>parent.form1.neirong.value+='<br><img src="&FileName&"></img><br>'</script>"
sql100="insert into images(id,url,addtime) values('"&Session("id")&"','"&filename&"','"&Now()&"')"
set rs100=conn.execute(sql100)
sql101="select imgid from images where url='"&filename&"'"
set rs101=conn.execute(sql101)
set Session("imgid")=rs101("imgid")
exit for
end if
next
iCount=iCount+1
end if
set file=nothing
next
set upload=nothing ''删除此对象
Htmend iCount&" 个文件上传结束!"
sub HtmEnd(Msg)
set upload=nothing
response.write "上传成功 [ <a href=# onclick=history.go(-1)>继续上传</a>]"
response.end
end sub
%>
<%
%>
</body>
</html>
我也知道这样写应该不对的,
sql101="select imgid from images where url='"&filename&"'"
set rs101=conn.execute(sql101)
set Session("imgid")=rs101("imgid")
这里的imgid的值如何写入Session或者将它的值传到另一页面呢?
谢谢你哦,可以说的再具体些吗?
例如应该在代码的哪个位置声明,再列些例子看看~~
我拷进去,页面运行不过去,说什么语句没结束~
我又加20分啦。 展开
代码如下:
<!--#include file="conn.asp"-->
<!--#include file="upload.inc"-->
<html>
<head>
<title>文件上传</title>
</head>
<body>
<%
dim upload,file,formName,formPath,iCount,filename,fileExt
set upload=new upload_5xSoft ''建立上传对象
formPath=upload.form("filepath")
''在目录后加(/)
if right(formPath,1)<>"/" then formPath=formPath&"/"
response.write "<body>"
iCount=0
for each formName in upload.file ''列出所有上传了的文件
set file=upload.file(formName) ''生成一个文件对象
if file.filesize<100 then
response.write "请选择你要上传的文件 [ <a href=# onclick=history.go(-1)>重新上传</a> ]"
response.end
end if
if file.filesize>1000*1000 then
response.write "文件大小超过了限制1000K [ <a href=# onclick=history.go(-1)>重新上传</a> ]"
response.end
end if
fileExt=lcase(right(file.filename,4))
uploadsuc=false
Forum_upload="gif,jpg,png"
Forumupload=split(Forum_upload,",")
for i=0 to ubound(Forumupload)
if fileEXT="."&trim(Forumupload(i)) then
uploadsuc=true
exit for
else
uploadsuc=false
end if
next
if uploadsuc=false then
response.write "文件格式不正确 [ <a href=# onclick=history.go(-1)>重新上传</a> ]"
response.end
end if
randomize
ranNum=int(90000*rnd)+10000
filename=formPath&year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)&ranNum&fileExt
if file.FileSize>0 then ''如果 FileSize > 0 说明有文件数据
file.SaveAs Server.mappath(FileName) ''保存文件
for i=0 to ubound(Forumupload)
if fileEXT="."&trim(Forumupload(i)) then
response.write "<script>parent.form1.neirong.value+='<br><img src="&FileName&"></img><br>'</script>"
sql100="insert into images(id,url,addtime) values('"&Session("id")&"','"&filename&"','"&Now()&"')"
set rs100=conn.execute(sql100)
sql101="select imgid from images where url='"&filename&"'"
set rs101=conn.execute(sql101)
set Session("imgid")=rs101("imgid")
exit for
end if
next
iCount=iCount+1
end if
set file=nothing
next
set upload=nothing ''删除此对象
Htmend iCount&" 个文件上传结束!"
sub HtmEnd(Msg)
set upload=nothing
response.write "上传成功 [ <a href=# onclick=history.go(-1)>继续上传</a>]"
response.end
end sub
%>
<%
%>
</body>
</html>
我也知道这样写应该不对的,
sql101="select imgid from images where url='"&filename&"'"
set rs101=conn.execute(sql101)
set Session("imgid")=rs101("imgid")
这里的imgid的值如何写入Session或者将它的值传到另一页面呢?
谢谢你哦,可以说的再具体些吗?
例如应该在代码的哪个位置声明,再列些例子看看~~
我拷进去,页面运行不过去,说什么语句没结束~
我又加20分啦。 展开
展开全部
请问如何将值写入session中,或者将值传到另一页面中的方法。
如下参考:
1.首先,我们需要打开vscode,创建一个H5规范的页面,将一个jquery源文件放在同级目录中,并将jquery引入到页面中。
2.后台可以通过源字段或viewbag(asp.netMVC)在接口上隐藏session的值。不要以这种方式返回敏感信息。
3.后台还可以提供GetSession方法,用于返回session的值。
4.前台通过js(jquery)的ajax方法(get)调用后台方法,获取session的值。
5.后台提供了一个方法SetSession来接收参数并将数据保存到会话中。
6.前台通过js(jquery)ajax方法(post),调用后台方法,将参数传递给后台方法。
展开全部
第一张页面 先声明一个SESSION. 其中值为你要的IMGID,
HttpSession sessionName = request.getSession();
sessionName.setAttribute("sessionName", imgid);
第二个页面使用 String imgid = (String) session.getAttribute("sessionName");
这样就可以了。。楼主觉得意下如何。。。。我是为了分数啊!!!
HttpSession sessionName = request.getSession();
sessionName.setAttribute("sessionName", imgid);
第二个页面使用 String imgid = (String) session.getAttribute("sessionName");
这样就可以了。。楼主觉得意下如何。。。。我是为了分数啊!!!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询