-
Notifications
You must be signed in to change notification settings - Fork 0
/
F8CiudadProc.asp
96 lines (94 loc) · 2.51 KB
/
F8CiudadProc.asp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<%
Response.Expires = -1
Session.Timeout = 999
Response.Buffer = false
Server.ScriptTimeout = 99999
%>
<!--#INCLUDE FILE="include/conexion.inc" -->
<!--#INCLUDE FILE="include/funciones.inc" -->
<%
dim str
dim rst
dim Ciudad
Ciudad= trim(request.form("txtcodigociudad"))
if Ciudad <> "" then
str="select * from mt_ciudad where codciudad like '%" & Ciudad & "%'"
else
str="select * from mt_ciudad order by codciudad asc "
end if
set rst=Session("Conn").execute(str)
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script>
function filtra(){
TheForm.action="F8CiudadProc.asp"
TheForm.submit();
}
function consulta(Ciudad)
{ window.opener.document.TheForm.txtciudadpro.value=Ciudad;
window.close();
}
</script>
<title>Consulta Comunas</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="css/ed.css" rel="stylesheet" type="text/css">
</head>
<body background="ima/iso-uhc.gif">
<form name="TheForm" method="post" action="">
<table width="530" border="0">
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr class="titulo">
<td colspan="3">Consulta de <span class="titulo">Ciudad de Procedencia</span></td>
</tr>
<tr class="titulo">
<td colspan="3"><div align="right">
<input name="Cerrar" type="submit" id="Cerrar" value="Cerrar" onClick="javascript:window.close();">
</div></td>
</tr>
</table>
<table width="530" border="0">
<tr>
<td width="222" class="tex">Busqueda por Codigo de Ciudad</td>
<td width="298"><input name="txtcodigociudad" type="text" id="txtcodigociudad" value="<%=Ciudad%>" onblur="javascript:filtra();"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
<p> </p>
<table width="530" height="27" border="0">
<tr>
<td width="172" class="titulo2">Codigo Ciudad</td>
<td width="348" class="titulo2">Nombre Ciudad</td>
</tr>
</table>
<table width="530" border="0">
<%while not rst.eof %>
<tr class="sub-titulo">
<td width="172"><a href="javascript:consulta('<%=trim(rst("codciudad"))%>')"> <%=rst("codciudad")%> </a></td>
<td width="348"><%=rst("nomciudad")%></td>
<%rst.movenext%>
</tr>
<%wend%>
</table>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</form>
</body>
</html>
<!--#INCLUDE file="include/desconexion.inc" -->