[提问]
gd 的空间乱码大部解决了,但还有一点点,解决不了!
|
|
全站乱码都用 <%@ CODEPAGE = "936" %> 这句解决,
但就只有这小部分还会出现乱码,,
怎么解决??
那位置代码:- <select style="width:70" name="car_city1" id="selectProvince4" onChange="addSelect3(this.value,'selectCity4');">
- <%if rs_a.RecordCount > 1 then%>
- <option value="">请选择</option>
- <%
- do while not rs_a.EOF
- %>
- <option value="<%=rs_a("ProvinceID")%>" <%if rs_a("ProvinceID") = "440000" then response.write "selected"%> ><%=rs_a("Province") %></option>
- <%
- rs_a.MoveNext
- loop
- else%>
- <option value="">暂无数据</option>
-
- <%
- rs_a.close
- end if %>
- </select>
-
- <select name="car_city2" style="width:70" id="selectCity4" onChange="addSelect3(this.value,'selectArea4');">
- <%
- Set rs1=Server.CreateObject("ADODB.RecordSet")
- sql1="SELECT CityID,City From Cities where ProvinceID='440000'"
- rs1.Open sql1,conn,1,1
- if not rs1.bof and not rs1.eof then
- do while not rs1.eof%>
- <option <%if rs1("CityID")="440100" then Response.Write"selected" %> value="<%=rs1("CityID")%>"><%=rs1("City")%></option>
-
- <%
- rs1.movenext
- loop
-
- end if
- rs1.close
- %>
- </select>
- <select name="car_city3" id="selectArea4" style="width:70">
-
- <option value="">--------</option>
- </select>
- <script language="JavaScript">
- //addSelect(440000,'selectCity');
- addSelect3('440100','selectArea4');
- </script>
复制代码 |
|
|
|
|
|
|
|
|
|
|
add.c
发表于 2011-1-4 16:43:24
|
显示全部楼层
|
|
|
|
|
|
|
|