![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
27/04/2011, 06:55
|
| | Fecha de Ingreso: abril-2011
Mensajes: 39
Antigüedad: 13 años, 10 meses Puntos: 1 | |
Respuesta: Modificar registros de la base de datos <!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=utf-8" />
<title>Search</title>
<link rel="stylesheet" type="text/css" media="screen" title="basic" href="themes/basic/grid.css" />
<style>
html, body {
margin: 0; /* Remove body margin/padding */
padding: 0;
overflow: hidden; /* Remove scroll bars on browser window */
font: 12px "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana;
width: 100%;
height: 100%
}
.post {
color:black;
padding: 20px 0 0 40px;
overflow: visible; /* Remove scroll bars on browser window */
}
</style>
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/jquery.jqGrid.js" type="text/javascript"></script>
<script type="text/javascript">
var gridimgpath = 'themes/basic/images';
</script>
</head>
<body>
<div id="mainPanelArea" class="tabPanel" >
<div>
<div style="margin-left:20% ;" >
Nombre<br />
<input type="text" id="Nombre" onkeydown="doSearch(arguments[0]||event)" />
</div>
<div>
<div style="margin-left:20% ;" >
Apellido<br/>
<input type="text" id="Apellido" onkeydown="doSearch(arguments[0]||event)" />
</div>
<div>
<div style="margin-left:20% ;" >
DNI<br/>
<input type="text" id="DNI" onkeydown="doSearch(arguments[0]||event)" />
</div>
<br/>
</div>
<div style="margin-left:5% ;" >
<table id="bigset" class="scroll" cellpadding="0" cellspacing="0"></table>
<div id="pagerb" class="scroll" style="text-align:center;"></div>
<script src="search.js" type="text/javascript"> </script>
<br/>
</body>
</html> |