Ver Mensaje Individual
  #5  
Antiguo 21-04-2008
SMTZ SMTZ is offline
Miembro
 
Registrado: nov 2003
Posts: 225
Reputación: 21
SMTZ Va por buen camino
Solucionado

Al final era sencillo. Pongo la solución que he encontrado para quien le interese. Antes del
Cita:
<body>
del fichero .aspx, escribiremos el siguiente código:

Código:
<script language="javascript">
<!--

if( screen.width=640){
	document.writeln('<body style="ZOOM: 50%">');
}
else if(screen.width=800){
		document.writeln('<body style="ZOOM: 63%">');

}
else if(screen.width=1024){
		document.writeln('<body style="ZOOM: 80%">');
}
else if(screen.width>=1280){
		document.writeln('<body style="ZOOM: 100%">');
}

-->
Responder Con Cita