Retroceder   Foros del Web > Programación para sitios web > .NET > web forms

Respuesta
 
Herramientas Desplegado
Antiguo 29-may-2008, 11:35   #1 (permalink)
roger1187 ha deshabilitado el karma
 
Fecha de Ingreso: marzo-2008
Mensajes: 148
problema con control de validacion

Cita:
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="iso-8859-1" %>
<%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls" Assembly="DreamweaverCtrls,versfinancieraion=1.0.0 .0,publicKeyToken=836f606ede05d46a,culture=neutral " %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<%@ Import Namespace="System.Data.SqlClient.SqlParameter" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script language="vb" runat="server">
Sub Page_Load(sender1 as Object, e1 as EventArgs)
if r1.checked then
rvb.MaximumValue = 8000[/color]
end if
if r2.checked then[/color]
rvb.MinimumValue = 2000
end if
end sub

</script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin t&iacute;tulo</title>
</head>
<body>
<form runat="server">
<asp:TextBox ID="TextBox1" runat="server" />
<asp:RangeValidator ID="rvb" ControlToValidate="TextBox1"></asp:RangeValidator><asp:RadioButton ID="r1" runat="server" Text='r1' GroupName="r" AutoPostBack="true" />
<asp:RadioButton ID="r2" Text="r2" runat="server" GroupName="r" AutoPostBack="true" />

</form>
</body>
</html>
Tengo el sgte problema ....me gustaria poder controlar el tipo de rangevalidator q puede haber......x ejemplo si elijo el radiobutton "r1" que en el textbox solo me permita 1 valor minimo 8000 y si es el radiobutton "r2" q salga el valor de 2000 como minimo
el rangevalidator tiene como ID ="rvb" ....no se si me falta algo... o esta mal el codigo espero q me puedan ayudar
roger1187 está desconectado   Responder Citando
Respuesta
No hay votos aún.


Herramientas
Desplegado

Normas de Publicación
No puedes crear nuevos temas
No puedes responder temas
No puedes subir archivos adjuntos
No puedes editar tus mensajes

BB code is Activado
Caritas están Activado
[IMG] está Activado
Código HTML está Desactivado


La Zona horaria es GMT -6. Ahora son las 01:17.


Message Board Statistics

LinkBacks Enabled by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93