高分悬赏,有关ASP下拉菜单修改
<selectname="main_id"id="main_id"onchange="changelocation(document.product_add.main_i...
<select name="main_id" id="main_id" onchange="changelocation(document.product_add.main_id.options[document.product_add.main_id.selectedIndex].value,document.product_add)">
<%
i = 0
Set RsBig = Conn.Execute("SELECT * FROM product_big_class ORDER BY order_id")
Do While Not RsBig.EOF
If i = 0 Then main_id = RsBig(0)
Response.Write("<option value="""&RsBig(0)&""">"&RsBig(1)&"</option>")
i = i + 1
RsBig.MoveNext
Loop
Set RsBig = Nothing
%>
</select>
<select name="sub_id" id="sub_id">
<%
If main_id <> "" Then
Set RsSmall = Conn.Execute("SELECT * FROM product_small_class WHERE main_id = "&main_id)
Do While Not RsSmall.EOF
Response.Write("<option value="""&RsSmall(0)&""">"&RsSmall(1)&"</option>")
RsSmall.MoveNext
Loop
End If
Set RsSmall = Nothing
%>
</select>
这两段代码分别控制以下图中“网站案例”和“企业网站”这两个下拉菜单, 我现在想修改“网站案例”这四个字,但是在 整个网站源程序中根本看不到这四个字。请问这是怎么回事?难道是ASP封装?要怎么改?30分悬赏!!!
如下图所示 展开
<%
i = 0
Set RsBig = Conn.Execute("SELECT * FROM product_big_class ORDER BY order_id")
Do While Not RsBig.EOF
If i = 0 Then main_id = RsBig(0)
Response.Write("<option value="""&RsBig(0)&""">"&RsBig(1)&"</option>")
i = i + 1
RsBig.MoveNext
Loop
Set RsBig = Nothing
%>
</select>
<select name="sub_id" id="sub_id">
<%
If main_id <> "" Then
Set RsSmall = Conn.Execute("SELECT * FROM product_small_class WHERE main_id = "&main_id)
Do While Not RsSmall.EOF
Response.Write("<option value="""&RsSmall(0)&""">"&RsSmall(1)&"</option>")
RsSmall.MoveNext
Loop
End If
Set RsSmall = Nothing
%>
</select>
这两段代码分别控制以下图中“网站案例”和“企业网站”这两个下拉菜单, 我现在想修改“网站案例”这四个字,但是在 整个网站源程序中根本看不到这四个字。请问这是怎么回事?难道是ASP封装?要怎么改?30分悬赏!!!
如下图所示 展开
展开全部
打开数据库,在product_big_class表的第二列字段中找吧,一定可以找到。
动态网页中显示东西不一定都在源代码中,可以写一个网站你连一个汉字都找不到。
动态网页中显示东西不一定都在源代码中,可以写一个网站你连一个汉字都找不到。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个是在数据库里的。你在源码肯定看不到
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
从数据库(product_big_class)这个表里找。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询