Esto va al principio de la pagina:
Código PHP:
If (Request.Form("txt_plataforma") <> "") Then
servicio = Request.Form("txt_plataforma")
ElseIf (Request.QueryString("plataforma") <> "") Then
servicio = Request.QueryString("plataforma")
End If
y este es el codigo del 2º select:
Código PHP:
<select name="lstBx_Servicio" onChange="location.href('MantenedorEjec.asp?ServicioId=' +
MantenedorEjec.lstBx_Servicio.options[MantenedorEjec.lstBx_Servicio.selectedIndex].value)">
<option selected value="0">[Seleccione Servicio]</option>
<%
SQL = "SELECT ide_ser, nom_ser FROM sers ORDER BY nom_ser ASC"
Set RS2 = Conex.Execute(SQL)
ser = Request.QueryString("ServicioId")
While NOT RS2.EOF
ideServicio = RS2("ide_ser")
nomServicio = RS2("nom_ser")
If ser <> "" Then
If(CInt(ser) = CInt(ideServicio)) Then %>
<option value="<%=ideServicio%>" selected><%=nomServicio%></option>
<%
Else
%>
<option value="<%=ideServicio%>"><%=nomServicio%></option>
<%
End if
Else %>
<option value="<%=ideServicio%>"><%=nomServicio%></option>
<%
End if
RS2.MoveNext
Wend
RS2.Close%>
</select>
verifiqué y las variables se llaman de forma distinta...y aún tengo q ocupar las cookies mas los request.querystring
gracias chicos por su ayuda y su tiempo,
salu2.-