Ver Mensaje Individual
  #6 (permalink)  
Antiguo 17/08/2009, 17:20
Avatar de Myakire
Myakire
Colaborador
 
Fecha de Ingreso: enero-2002
Ubicación: Centro de la república
Mensajes: 8.849
Antigüedad: 23 años, 3 meses
Puntos: 146
Respuesta: recibir el valor de checkbox con asp

Cita:
In HTML, one can specify two different submission methods for a form. The method is specified inside a FORM element, using the METHOD attribute. The difference between METHOD="GET" (the default) and METHOD="POST" is primarily defined in terms of form data encoding.
http://www.cs.tut.fi/~jkorpela/forms/methods.html

Esto significa que si no defines <form method="POST"> tu formulario se manda por QueryString, y entonces debes recibirlo con Request.QueryString("chk_turno") o como Request("chk_turno").

Esto del copy-paste de códigos tienen sus riesgos