asp 上传多张图片写入到一个字段中用","隔开
发布网友
发布时间:2022-05-29 06:54
我来回答
共1个回答
热心网友
时间:2023-10-10 01:09
这个很简单吧。最笨的办法是:
dim imgpath
if request("newspic1")<>"" then imgpath=imgpath & "," & request("newspic1")
这里是2-8
if request("newspic10")<>"" then imgpath=imgpath & "," & request("newspic10")
if left(imgpath,1)="," then imgpath=right(imgpath,len(imgpath)-1) '去掉左边的'
其实你可以把这些字段设成同一个名字比如都叫newspic。获取到的数据就自动是,隔开的了