asp 上传多张图片写入到一个字段中用","隔开
比如我现在要上传10张图片,那么我要给他10个上传框<inputname="NewsPic1“type="text"class="textfield"style="WID...
比如我现在要上传10张图片,那么我要给他10个上传框
<input name="NewsPic1“ type="text" class="textfield" style="WIDTH: 240;" value="<%=NewsPic1%>" maxlength="100" />
<input name="NewsPic2“ type="text" class="textfield" style="WIDTH: 240;" value="<%=NewsPic2%>" maxlength="100" />
<input name="NewsPic3“ type="text" class="textfield" style="WIDTH: 240;" value="<%=NewsPic3%>" maxlength="100" />
。。。
<input name="NewsPic10“ type="text" class="textfield" style="WIDTH: 240;" value="<%=NewsPic10%>" maxlength="100" />
因为这些图片数量是不固定的 所以最好用循环将它们写入到数据表字段中
给个实例 或者嗨我。。。
还有调用的方法 展开
<input name="NewsPic1“ type="text" class="textfield" style="WIDTH: 240;" value="<%=NewsPic1%>" maxlength="100" />
<input name="NewsPic2“ type="text" class="textfield" style="WIDTH: 240;" value="<%=NewsPic2%>" maxlength="100" />
<input name="NewsPic3“ type="text" class="textfield" style="WIDTH: 240;" value="<%=NewsPic3%>" maxlength="100" />
。。。
<input name="NewsPic10“ type="text" class="textfield" style="WIDTH: 240;" value="<%=NewsPic10%>" maxlength="100" />
因为这些图片数量是不固定的 所以最好用循环将它们写入到数据表字段中
给个实例 或者嗨我。。。
还有调用的方法 展开
展开全部
这个很简单吧。最笨的办法是:
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。获取到的数据就自动是,隔开的了
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。获取到的数据就自动是,隔开的了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询