asp下拉框默认值的问题

*****newsadd.asp****ifrequest.QueryString("action")="save"thenContent=Request.Form("C... *****newsadd.asp****
if request.QueryString("action")="save" then
Content=Request.Form("Content")
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from newsinfo",conn,1,3
rs.addnew
rs("c_type")=request("t1")
rs("c_title")=trim(request("c_title"))
rs("c_name")=trim(request("c_name"))
rs("m_memo")=content
rs("d_date")= date()
rs.update
rs.close
set rs=nothing
response.write "<script language=javascript>alert('添加成功!');window.location.href='newsadd.asp';</script>"
response.End
end if

<form name="form1" method="post" action="newsadd.asp?action=save" onSubmit="return checkdata()" onReset="return ResetForm();">
<select name="t1">
<option value="第一项目">第一项目</option>
<option value="第二项目">第二项目</option>
<option value="第三项目">第三项目</option>
<option value="第四项目">第四项目</option></select>

我选择第二个项目提交保存到数据库里面之后,下拉列表就自动默认到这个项目上
TO: seal207
把response.write "<script language=javascript>alert('"&t2&"');</script>"
放在if request.QueryString("action")="save" then
前面测试,获取t2值为空
展开
 我来答
育知同创教育
2018-08-01 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
展开全部
asp下拉菜单设定默认值:
在dropdownlist中加入一个AppendDataBoundItems="True"的属性,然后设置一条静态条目,内容为空,当然也可以设置成“请选择数据”之类的值。
具体如下:
<asp:DropDownList ID="DropDownList1" runat="server" AppendDataBoundItems="True" >
<asp:ListItem Value="0">请选择</asp:ListItem>
</asp:DropDownList>

这样绑定的数据只会追加到这条静态数据之后,而默认选中的是这条静态数据。
平静且妥善的小鱼丸998
2009-01-23 · TA获得超过174个赞
知道小有建树答主
回答量:276
采纳率:0%
帮助的人:200万
展开全部
<select name="t1">
<option value="第一项目">第一项目</option>
<option value="第二项目" selected>第二项目</option>
<option value="第三项目">第三项目</option>
<option value="第四项目">第四项目</option></select>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
seal207
2009-01-23 · 超过11用户采纳过TA的回答
知道答主
回答量:57
采纳率:0%
帮助的人:0
展开全部
<%
if request.QueryString("action")="save" then
t2=request("t1")
Content=Request.Form("Content")
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from newsinfo",conn,1,3
rs.addnew
rs("c_type")=request("t1")
rs("c_title")=trim(request("c_title"))
rs("c_name")=trim(request("c_name"))
rs("m_memo")=content
rs("d_date")= date()
rs.update
rs.close
set rs=nothing
response.write "<script language=javascript>alert('添加成功!');window.location.href='newsadd.asp?t2="&t2&"';</script>"
response.End
end if
%>

<form name="form1" method="post" action="newsadd.asp?action=save" onSubmit="return checkdata()" onReset="return ResetForm();">
<select name="t1">
<option value="第一项目" <%if t2="第一项目" then%>selected="selected"<%end if%>>第一项目</option>
<option value="第二项目" <%if t2="第二项目" then%>selected="selected"<%end if%>>第二项目</option>
<option value="第三项目" <%if t2="第三项目" then%>selected="selected"<%end if%>>第三项目</option>
<option value="第四项目" <%if t2="第四项目" then%>selected="selected"<%end if%>>第四项目</option>
</select>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友674263ddb
2009-01-23 · TA获得超过165个赞
知道小有建树答主
回答量:342
采纳率:0%
帮助的人:276万
展开全部
加一脚本:
<script>
document.getElementByName("t1").value="<%=rs("c_type")%>";
</script>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
溜须拍马关云长
2009-01-23 · TA获得超过1708个赞
知道大有可为答主
回答量:2443
采纳率:0%
帮助的人:0
展开全部
<select name="t1">

改成

<select name="t1" onload="this.value='<%=rs("c_type")%>'">
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式