Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/06/2006, 07:48
NoChance
 
Fecha de Ingreso: marzo-2006
Mensajes: 83
Antigüedad: 18 años, 8 meses
Puntos: 0
Lo que tengo armado incompleto es lo siguiente:

Código:
<td width="51"><select name="num_talonario"  onchange="next_number();">
<SCRIPT LANGUAGE="javascript">
function next_number(){
	var num_tal=document.forms[0].num_talonario.options.selectedIndex;
	<%Talonario(num_tal)%> //Acá necesito saber como pasarle la variable "num_tal" a la función de ASP ya que así no la toma.
}
</script>
<%
Function Talonario(num_tal)
	if num_tal < 1 then exit function
	
	Dim Rs
	Set Rs = Server.CreateObject("ADODB.Recordset")
	Rs.ActiveConnection = MM_con1_STRING
	
	Rs.Source = "SELECT * FROM TALONARIOS WHERE ID=" & cint(num_tal)
	Rs.CursorType = 2
	Rs.CursorLocation = 3 
	Rs.LockType = 3 
	Rs.Open()	
	
	Select case rs("numeracion")
 		case "A"
			ACA NECESITO LA LINEA PARA DESHABILITAR EL TEXT BOX
		case "M"
			ACA NECESITO LA LINEA PARA HABILITAR EL TEXT BOX
 	end select
	
	rs.close
	set rs = nothing
	
End Function
%>