[求助]图片存入数据库的问题
我把本地路径存入到数据库后,只有在本机上图片才能够正常的显示,换一台电脑,图片就不存在了,我应该怎么把服务器上的路径存入到数据库中呢?
<td><form name="form1" method="post" action="">
<input name="fil" type="file" id="fil">
<input type="submit" name="Submit" value="提交">
</form></td>
</tr>
</table>
<% dim img,exe
img=request.Form("fil")
if img<>"" then
exe="insert into image(img) values (' "+img+" ')"
conn.execute exe
end if
%>
我的程序代码。请各位给我指点一下。