Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/06/2010, 15:32
Avatar de jaullo
jaullo
 
Fecha de Ingreso: abril-2009
Mensajes: 994
Antigüedad: 15 años, 10 meses
Puntos: 30
Respuesta: un enlase en una ventana nueva

Puedes provar esto

En el HTML

Código ASP:
Ver original
  1. <asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl="#" >HyperLink</asp:HyperLink>

En el code behind

Código ASP:
Ver original
  1. HyperLink1.Attributes.Add("onClick", "window.open('http://www.asp.net','windownname','location=1,status=1,scrollbars=1,width=100px,height=100px, top=100px, left=100px')");