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值为空 展开
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值为空 展开
5个回答
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>
这样绑定的数据只会追加到这条静态数据之后,而默认选中的是这条静态数据。
在dropdownlist中加入一个AppendDataBoundItems="True"的属性,然后设置一条静态条目,内容为空,当然也可以设置成“请选择数据”之类的值。
具体如下:
<asp:DropDownList ID="DropDownList1" runat="server" AppendDataBoundItems="True" >
<asp:ListItem Value="0">请选择</asp:ListItem>
</asp:DropDownList>
这样绑定的数据只会追加到这条静态数据之后,而默认选中的是这条静态数据。
展开全部
<select name="t1">
<option value="第一项目">第一项目</option>
<option value="第二项目" selected>第二项目</option>
<option value="第三项目">第三项目</option>
<option value="第四项目">第四项目</option></select>
<option value="第一项目">第一项目</option>
<option value="第二项目" selected>第二项目</option>
<option value="第三项目">第三项目</option>
<option value="第四项目">第四项目</option></select>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%
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>
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>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
加一脚本:
<script>
document.getElementByName("t1").value="<%=rs("c_type")%>";
</script>
<script>
document.getElementByName("t1").value="<%=rs("c_type")%>";
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<select name="t1">
改成
<select name="t1" onload="this.value='<%=rs("c_type")%>'">
改成
<select name="t1" onload="this.value='<%=rs("c_type")%>'">
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询