❶ 谁有简单的ASP购物网站留言板代码
你要这个代码需要数据库的,下面是主页面的代码,需要全部的代码,加我Q,我传给你!想要购物类留言板,那是没有你想象的那么简单!(这里是第一部分)<!--#include file="connection_db.asp"--> <!--#include file="settings.txt"--> <!--#include file="function_list.inc"--> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>ASP简易留言板--ASP simple postboard v1.21</title> <style type="text/css"> A:link,A:active,A:visited{TEXT-DECORATION:none ;Color:#3C2F1D} A:hover{TEXT-DECORATION: underline;Color:#4455aa} BODY{ FONT-SIZE: 12px; COLOR: #000000; FONT-FAMILY: 宋体; background-color: #ECF5FF; background-image: url(<%=bg%>); } font{line-height : normal ;} td { table-layout:fixed; word-break :break-all; font-family:"宋体"; font-size: 12px; line-height: 15px; } th { background-color: #877C59; COLOR: #F4F2EC; font-size: 12px; font-weight:bold; } .style1 {color: #FFFFFF} </style> <SCRIPT language=JavaScript1.2> function high(x2){ obj=x2 highlighting=setInterval("highlightit(obj)",80) } function highlightit(x){ if (x.filters.alpha.opacity<98) x.filters.alpha.opacity+=5 else if (window.highlighting) clearInterval(highlighting) } </SCRIPT> <script language="vbscript"> <!--clean value of content sub cleanC() document.pencil.content.value="" end sub --> <!--check all value of form sub check() if document.pencil.content.value="" then alert("Do not leave a empty message please!") exit sub <% if writename=true then%> elseif document.pencil.name.value="" then alert("Please write your name!") exit sub <% end if%> elseif len(document.pencil.content.value)>200 then alert("留言内容长度不能超过200字符!") exit sub elseif document.pencil.title.value="" then alert("Please write title!") exit sub else document.pencil.submit end if end sub --> <!--made use onclicking reply logo to reply sub reply(x,y) document.pencil.title.value="回复 "&x&" ("&y&") " end sub --> <!--finding newest version and updating sub newest() udt=confirm("是否查看及下载留言板的最新版本?") if udt=true then document.postboarpdate.submit exit sub end if end sub --> </script> </head> <body> <% IF (output=true and session("postboard_admin")=true) or not output=true THEN if x0=empty or not isNUMERIC(x0) then x0=0 elseif x0>30 then x0=30 elseif x0<-30 then x0=-30 end if if x0<>0 then rs.open "select * from message order by id "&list(x0),conn,1 maxX=1 maxY=abs(x0) elseif x0=0 then response.write(licence) response.end end if rs.pagesize=maxX*maxY '设置和计算每页的记录数,即每页共多少图片 dim everypagesize,rscount,curpage,pgcount '每页记录数,总记录数,当前页数,总页数 everypagesize=rs.pagesize rscount=rs.recordcount pgcount=rs.pagecount if request.form("page")=empty or not isNumeric(request.form("page")) then if isNumeric(request.querystring("page")) then curpage=cint(request.querystring("page")) else curpage=1 end if else curpage=cint(request.form("page")) end if if curpage=empty or curpage<1 then curpage=1 elseif curpage>pgcount then curpage=pgcount end if if not rs.eof=true and not rs.bof=true then rs.absolutepage=curpage '设置当前页数 end if %> <table width="700" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="763" height="25"></td> </tr> </table> <p><strong><a name="latest" id="latest"></a></strong> <% IF rs.eof=true and rs.bof=true THEN %> <center> <table width="598" height="60" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#E8F2FF"> <tr> <td height="25" colspan="2" background="img/bg3.gif"><table width=550><tr><td width=440> </td><td></td></tr></table></td> </tr> <tr> <td bgcolor=white style="FILTER: alpha(opacity=50)"><p align=center>还没有任何留言<br>There are not any messages ! </p></td> </tr> </table> </center> <% ELSE i=1 While not rs.eof and i<=maxY response.write("<table width=600 border=""1"" align=""center"" cellpadding=""0"" cellspacing=""0"" bordercolor=""#E8F2FF"">") response.write("<tr>") response.write("<td style=""FILTER: alpha(opacity=80)"" height=""30"" background=""img/title_blue.gif"" width=100><strong>"&rs("id")&"楼</strong></td>") IF rs("shield").value=true then '检查shield是否为TRUE以判断此记录是否已被屏蔽 response.write("<td style=""FILTER: alpha(opacity=80)"" height=""30"" background=""img/title_blue.gif""><table><tr><td width=282><div align=""left"">标题: <a title=""不显示"">不显示</a></div></td><td><div align=""right""><img src=img/email.gif> <img src=img/reply.gif alt=""reply"" border=0></div></TD></tr></table></td>") ELSE '否则正常显示标题 if lenB(rs("title").value)>abs(lt)*2 then response.write("<td style=""FILTER: alpha(opacity=80)"" height=""30"" background=""img/title_blue.gif""><table><tr><td width=282><div align=""left"">标题: <a title="""&rs("title").value&""">"&mid(rs("title").value,1,abs(lt))&"...</a></div></td><td><div align=""right""><img src=img/email.gif alt="&rs("email").value&"> <a href=#pencil onclick=reply('"&rs("name").value&"',"""&replace(mid(rs("title").value,1,15)," ","")&"..."")><img src=img/reply.gif alt=""reply"" border=0></a></div></TD></tr></table></td>") else response.write("<td style=""FILTER: alpha(opacity=80)"" height=""30"" background=""img/title_blue.gif""><table><tr><td width=282><div align=""left"">标题: <a title="""&rs("title").value&""">"&rs("title").value&"</a></div></td><td><div align=""right""><img src=img/email.gif alt="&rs("email").value&"> <a href=#pencil onclick=reply('"&rs("name").value&"',"""&replace(mid(rs("title").value,1,15)," ","")&""")><img src=img/reply.gif alt=""reply"" border=0></a></div></TD></tr></table></td>") end if END IF '检查SHIELD完毕 response.write("</tr>") response.write("<tr>") response.write("<td colspan=2 bgcolor=white style=""FILTER: alpha(opacity=70)"" onmouseover=high(this)>") IF rs("shield").value=true then '检查shield是否为TRUE以判断此记录是否已被屏蔽 response.write("<table width=590 height=35><tr><td width=300>【作者】不显示</td><td width=290>【发表时间】"&rs("date").value&"</tr></table>") '如果是则不显示留言 response.write("<div align=left><table width=100% ><tr><td>【留言内容】</td></tr><tr><td><p> 此留言已被管理员屏蔽!</p></td></tr></table></div>") ELSE '否则正常显示 if len(rs("name").value)<=25 then response.write("<table width=590 height=35><tr><td width=300>【作者】"&rs("name").value&"</td><td width=290>【发表时间】"&rs("date").value&"</tr></table>") else response.write("<table width=100% height=35><tr><td width=300>【作者】"&mid(rs("name").value,1,25)&"...</td><td width=290>【发表时间】"&rs("date").value&"</tr></table>") end if response.write("<div align=left><table width=100% ><tr><td>【留言内容】</td></tr><tr><td><p> "&rs("content").value&"</p></td></tr></table></div>") END IF '检查SHIELD完毕 IF rs("reply")<>empty THEN' 查看有没有管理员回复,有则显示回复 response.write("<br><div align=left><table width=100% ><tr><td>-------------------------</td></tr><tr><td><font color="&rs("color_reply").value&">【管理员回复】</font></td></tr><tr><td><p><font color="&rs("color_reply").value&"> "&rs("reply").value&"</font></p></td></tr></table></div>") END IF response.write("</tr>") IF session("postboard_admin")=true then '最近的更新方向为管理员管理,及根限设定 response.write("<tr><td height=""5"" bgcolor=#E8F2FF>管理操作</td><td bgcolor=#E8F2FF>|<img src=img/reply_admin.gif border=0 title=reply><a href=management_change.asp?action=reply&NO="&rs("id").value&" title=reply>回复留言</a> | <img src=img/delete.gif border=0 title=delete><a href=management_operate.asp?action=delete&NO="&rs("id").value&" title=delete>删除留言</a> | <img src=img/shield.gif border=0 title=delete>") if rs("shield").value=true then response.write("<a href=management_operate.asp?action=notshield&NO="&rs("id").value&" title=shield>解除屏蔽</a></td></tr>") else response.write("<a href=management_operate.asp?action=shield&NO="&rs("id").value&" title=shield>屏蔽留言</a></td></tr>") end if END IF response.write("</table>") response.write("<table><tr><td></td></tr></table>") i=i+1 rs.movenext Wend END IF %> <br> <br> <BR>
❷ 有些购物网站上的客户留言,真是客户信息反馈吗还是网站自己编发的,已达到骗取消费者信任的目的
要看什么网站的评价,比方淘宝吧,现在帮刷信誉的很多,你可以看退款数量,中差评多少,发货以及态度得分情况,京东吧比淘宝好点,他有晒单功能,可以看到东西到买家手里是什么样子,淘宝就有好评,东西到底怎么样看不到,买东西还是要到正规网站去买,信誉不会差的。
❸ 淘宝的信息留言在哪里
淘宝的信息留言在商品订单提交的页面中,页面下方的位置会出现给卖家留言的留言框。
具体查询步骤如下:
1、在手机淘宝客户端页面中,挑选好合适的商品后,在商品页面下角,选择“立即购买”。
❹ 在京东购买商品时填写订单时怎么给商家留言呢
以在电脑上操作京东下单为例,使用京东账号登录进入以后选定需要购买的商品,内点击结算。然后容在出现的结算页面中就可以看到给商家留言的信息编辑框,输入需要的内容就可以完成给商家留言。具体的操作方法如下:
1、在电脑的网络上输入京东,找到其官方网站以后点击进入。
❺ 淘宝购物车里的东西怎么给卖家留言
1、首先在来电脑浏览器上进入淘宝网源。
❻ 天猫购物已付款,如何加留言
天猫对于已付款卖家无交易留言,如果拍下未付款,可以自主添加备注,付款后就不能添加备注了,建议咨询卖家客服,留言给客服,让客服帮忙备注。一般卖家客服都会帮忙备注的。
如果备注确实对买家来说很重要,而且客服也不帮忙备注,那么买家也可以在卖家未发货前申请退款,退款后重新拍下,备注好再付款。
❼ 淘宝网付款后怎么在买家留言留言
付款后是没法在买家留言处进行备注留言的。需要留言的话直接联系卖家的专旺旺客服,向客服说明自属己的留言,让客服帮您进行备注就好了。
备注留言一定要在拍下的时候执行,比如要拍某款宝贝,点击立即购买,会出现确认订单信息,这个页面有买家留言窗口,可以把自己的留言写下来,然后点击提交订单即可。
❽ 淘宝网购物忘记写留言了怎么办
付款了的话就没办法自己写了,可以联系客服让客服帮你备注
或者是申请退款,然后重新拍,留言后付款
❾ 买家在淘宝网买东西怎样留言
一般都直接用复旺旺沟通制,也可以发站内信给他,也可以在店铺介绍那里找他的电话
淘宝淘宝,淘的好就是宝,淘的不好就是草
温馨提示:淘宝购物尽量选择信用高点的卖家
进我空间看吧,收集了近100家淘宝信用最高的金冠店
❿ 易趣网怎么购物怎么给卖家留言
在网上购物最好不要用现金直接交易,你可以在易趣网的首页注册一个自己的易趣帐号,这样你在上面选购衣物得时候有不明白的和不放心的就可以直接和店家交流,其实易趣的安付通就相当于淘宝的支付宝,他们都是网购的第三方监管者,你把钱存安付通里面是比较安全的,当你和店家联系好了,问好尺码和服务了以后再用安付通支付,如果实物与卖家所说的不一致你就可以投诉卖家,同时还可以把安付通里的钱退回你的银行帐号,我要求过退回帐号,他们的客服很nice,很按时得把钱给我退回来了.