Ver Mensaje Individual
  #5 (permalink)  
Antiguo 03/08/2009, 11:21
tato_RC
 
Fecha de Ingreso: agosto-2009
Mensajes: 13
Antigüedad: 14 años, 9 meses
Puntos: 0
Respuesta: Problema con asp.net y CSS

Cita:
Iniciado por Pinty Ver Mensaje
Introduces la llamada a las css en el codigo de tu pagina .aspx??
Por ejemplo.

Código:
<head runat="server">
     <link href="hojaestilo.css" rel="stylesheet" type="text/css"/>    
</head>
Si pones el codigo te podriamos ayudar mejor

Un saludo
Pinty
Si amigo, la llamada esta bien colocada, en la cabecera de la pagina.
Te muestro con unas imagenes para que vean lo que hace.
Antes de presionar el boton de impresion, la pagina se ve asi:

http : // img3 . imageshack . us / i / antesohb . jpg

Luego de presionar sobre el boton se ve asi:

http : // img41 . imageshack . us / i / dpse . jpg

adjunto también el codigo del botón, si necesitan otra cosa avisen

Código:
    Protected Sub btnPrint_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles btnPrint.Click
        If Not IsNothing(Session("permisoslist")) Then
            If CType(Session("permisoslist"), DataTable).Rows.Count > 0 Then
                Response.Write("<script>window.open('Reportes/ReportePermisoCarga.aspx', 'newWin', 'scrollbars=yes','left=0, top=20,width=500,height=670')</script>")


            End If
        End If
    End Sub