Muchas gracias a todos los que se dieron la molestia en responderme. Despues de un tiempo eh logrado hacer lo que me interesaba.
[PHP]<?php
include"../../validacion/sesion_valida.php";
include"../../validacion/conexion.php";
?>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Plataforma Control de Inventario</title>
<link href="../estilos/Software.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="contenedor-principal">
<h1 class="titulo-mostrar">Plataforma Control de Inventario</h1>
<h3 class="titulo">Modulo de Informacion de Software en los equipos</h3>
<h5 class="caja-izquierda"><a href="../menu.php">Volver</a><span class="forma"></span></h5>
<hr />
<h5 class="titulo">Informacion del software en los Equipos</h5>
<br />
<div id="centra-tabla">
<?php
$sql = "SELECT COUNT(*) AS total FROM [dbo].Software_on_Sci";
//Obtenemos el total de los registros
$totalRegistros= $resul['0'];
}
//$totalRegistros = mssql_result($query, 0, ' total');
//echo $sql."<br>";
//echo $totalRegistros."<br>";
//exit;
//aquí verificamos si existe la variable "pag", la cual indicará el numero de
//página en la que el usuario se encuentra, si no existe será la página 1
$paginaActual = isset($_GET['pag']) ?
$_GET['pag'] : 1;
//numero de items mostrados por página
$registrosPorPagina = 100;
//numero total de páginas a mostrar
$totalPag = ceil($totalRegistros / $registrosPorPagina);
//numero desde el cual recuperaremos los registros
$itemInicio = $registrosPorPagina * ($paginaActual - 1);
$itemTermino = $registrosPorPagina * $paginaActual;
//$totalRegistros
//recuperamos los registros pertinentes
//$sql = 'SELECT * FROM bo.busqueda_equipo_person LIMIT '.$itemInicio.','.$registrosPorPagina;
/*$sql = "SELECT [Name0] ,[UserName0],[DisplayName0],[Version0],[InstallDate0] ,[modelo]
,[proveedor],[rut] ,[digito_val],[nombre],[apellido_pat],[apellido_mat]
,[estado] ,[empresa],[nombre_Domicilio],[Semaforo]
FROM (SELECT ROW_NUMBER() OVER (ORDER BY [Name0] ASC) AS Row,
[Name0] ,[UserName0],[DisplayName0],[Version0],[InstallDate0] ,[modelo]
,[proveedor],[rut] ,[digito_val],[nombre],[apellido_pat],[apellido_mat]
,[estado] ,[empresa],[nombre_Domicilio],[Semaforo]
FROM dbo.Software_on_Sci) tmp
WHERE Row >= ".$itemInicio." AND Row <= ".$itemTermino."";*/
$sql = "SELECT [Name0] ,[UserName0],[DisplayName0],[Version0],[InstallDate0] ,[modelo]
,[proveedor],[rut] ,[digito_val],[nombre],[apellido_pat],[apellido_mat]
,[empresa],[nombre_Domicilio],[Semaforo]
FROM (SELECT ROW_NUMBER() OVER (ORDER BY [Name0] ASC) AS Row,
[Name0] ,[UserName0],[DisplayName0],[Version0],[InstallDate0] ,[modelo]
,[proveedor],[rut] ,[digito_val],[nombre],[apellido_pat],[apellido_mat]
,[estado] ,[empresa],[nombre_Domicilio],[Semaforo]
FROM dbo.Software_on_Sci) tmp
WHERE Row >= ".$itemInicio." AND Row <= ".$itemTermino."";
?>
<table class="tabla">
<tr><th>Numero</th><th>Hostname</th><th>UserID</th><th>Nombre Software</th> <th>Version</th><th>Fecha Instalacion</th><th>Modelo</th> <th>Marca</th><th>RUT</th><th>Nombre Completo</th><th>Empresa</th><th>Ubicacion</th><th>Tipo Licencia</th></tr>
<?php $cnt=$itemInicio;
<tr>
<td><?php echo $cnt ?></td> <td><?php echo $row['Name0'] ?></td> <td><?php echo $row['UserName0'] ?></td> <td><?php echo $row['DisplayName0'] ?></td> <td><?php echo $row['Version0'] ?></td> <td><?php echo $row['InstallDate0'] ?></td> <td><?php echo $row['modelo'] ?></td> <td><?php echo $row['proveedor'] ?></td> <td><?php echo $row['rut']."-".$row['digito_val'] ?></td> <td><?php echo $row['nombre']." ".$row['apellido_pat']." ". $row['apellido_mat'] ?></td> <td><?php echo $row['empresa'] ?></td> <td><?php echo $row['nombre_Domicilio'] ?></td> <td><?php echo $row['Semaforo'] ?></td>
</tr>
<?php $cnt=$cnt+1; }?>
</table>
<table class="tabla">
<tr><th>
<?php
//creamos los links de las páginas
$paginacion = '<p>';
$paginacion .= ($paginaActual > 1) ? '<a href="'.$_SERVER['PHP_SELF.'].'?pag='.($paginaActual - 1).'">Anterior</a> ' : 'Anterior ';
for($i=1; $i<=$totalPag; $i++) {
if ($i == $paginaActual) {
$paginacion .= '<strong>'.$i.'</strong> ';
}else {
$paginacion .= '<a href="'.$_SERVER['PHP_SELF'].'?pag='.$i.'">'.$i.'</a> ';
}
}
$paginacion .= ($paginaActual < $totalPag) ? '<a href="'.$_SERVER['PHP_SELF'].'?pag='.($paginaActual + 1).'">Siguiente</a>' : 'Siguiente';
$paginacion .= '</p>';
echo $paginacion;
?>
</th>
</tr>
</table>
</div><!--Centra Tabla-->
</div>
</body>
</html>[/PHP]