Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/05/2009, 07:57
kulebra10
 
Fecha de Ingreso: noviembre-2008
Mensajes: 23
Antigüedad: 15 años, 6 meses
Puntos: 0
Respuesta: Ver controles ASP en un HTML

este es parte del codigo de los controles


<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Solicitante.ascx.cs" Inherits="HASJ00_AplazamientosFraccionamientos.Sol icitante"
%>

<head>
<title>
</title>
</head>

<body >
<asp:Panel ID="panContenedor" runat="server" Height="170">
<%if (ModoControl == Modos.Solicitante || ModoControl == Modos.Representante) %>
<%{%>
<asp:Panel ID="panIdentificacion" runat="server">
<div id="divIdentificacion" class="">
<asp:Label ID="lblNombre" runat="server" Text=""></asp:Label>
<asp:TextBox ID="txtNombre" runat="server" ToolTip=""></asp:TextBox>
<asp:Label ID="lblNIF" runat="server" Text=""></asp:Label>
<asp:TextBox ID="txtNIF" runat="server" ToolTip=""></asp:TextBox>
</div>
</asp:Panel>
<%}%>
<asp:Panel ID="panDatosSolocitante" runat="server">
<div id="divDomicilio1">
<asp:Label ID="lblCalle" runat="server" Text=""></asp:Label>
<%if (bolCalleTexto==true)%>
<%{%>
<asp:TextBox ID="txtCalle" runat="server" ToolTip=""></asp:TextBox>
<%}%>
<%else%>
<%{%>
<asp:DropDownList ID="cboCalle" runat="server" AutoPostBack="True" AppendDataBoundItems="true"
ToolTip="Lista de calles"
onselectedindexchanged="cboCalle_SelectedIndexChan ged"></asp:DropDownList>
<%if (!Java)%>
<%{%>
<noscript>
<asp:Button ID="btnAceptarCalle" runat="server" Text="" ToolTip="Aceptar Calle"></asp:Button>
</noscript>
<%}%>
<%}%>

.......

.......