留言:
<form method='POST' name='myform' onSubmit='return metmessagesubmit("姓名不能为空","留言信息不能为空");' action="/gbook/save.asp?action=add" target='_self'>
<ul>
<li><span>标题</span><input name='FaqTitle' type='text' /></li>
<li><span>姓名</span><input name='Contact' type='text' /></li>
<li><span>电话</span><input name='ContactWay' type='text' /></li>
<li style="height:150px"><span>留言内容</span><textarea name='Content' cols='50' rows='9' style="500px" class='textarea-text'></textarea></li>
<li><span>验证码</span><input name="code" type="text" class="login_verification" id="verification" size="6" maxlength="6" style="BORDER: #B7DAEF 1px solid;WIDTH: 240px; height:18px;"/>
<img src="{aspcms:sitepath}/inc/checkcode.asp" alt="看不清验证码?点击刷新!" onClick="this.src='{aspcms:sitepath}/inc/checkcode.asp'" id="yanzhengma"/></li>
</ul>
<div style="margin-left:10%"><input type='submit' name='Submit' value='提交留言' class='submit button orange' style=" height:40px; padding:5px 15px; cursor:pointer;"></div>
</form>
自定义表单 模板命名custom action路径改为"/custom/save.asp?action=add"
搜索:
<form class="sszt" name="input" action="{aspcms:sitepath}{aspcms:languagepath}search.asp" method="get">
<input class="ss" type="text" name="keys" value=" 请输入产品关键词/名称/编号..." style="color: rgb(204, 204, 204);" onfocus="javascript:this.style.color='#000000';if(this.value==' 请输入产品关键词/名称/编号...')this.value='';" onblur="javascript:if(this.value==''){this.value=' 请输入产品关键词/名称/编号...';this.style.color='#CCCCCC';}">
<input type="submit" value="" style=" 56px; height:27px; background:url({aspcms:sitepath}/Templates/{aspcms:defaulttemplate}/images/ss1.jpg) no-repeat; border:0px;">
</form>
命名一个search模板
<body>
{aspcms:top}
<div class="clear"></div>
<div class="ny_xwzx">
<div class="ny_xwzx_top">
<p>当前位置:<a target="_blank" href="{aspcms:sitepath}{aspcms:languagepath}">首页</a>>> 搜索结果</p>
</div>
<div class="clear"></div>
<div class="ny_xwzx_left">
<div class="ny_xwzx_2">
{aspcms:searchlist size=10}
<dl>
<dd><a target="_blank" href="[searchlist:link]"><h2>[searchlist:title]</h2></a></dd>
</dl>
{/aspcms:searchlist}
<div class="clear"></div>
<div class="fy1">
<p>[searchlist:pagenumber len=5]</p>
</div>
</div>
</div>
{aspcms:template src=right_new.html}
</div>
<div class="clear" style="height:20px;"></div>
{aspcms:foot}
</body>
搜索不同栏目方法
1 单篇
2 文章列表
3 产品列表
4 下载列表
5 招聘列表
6 相册列表
7 链接
搜索结果里直接调用产品自定义字段方法:
在inc/AspCms_MainClass.asp里找到
for each spec in sperStrs
nloopstr = replace(nloopstr,"[list:"&spec&"]",repnull(rsObj(spec))) 在面后加上
nloopstr = replace(nloopstr,"[searchlist:"&spec&"]",repnull(rsObj(spec)))