My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<html>
<head>
<title>Fechas y monedas multi-pais</title>
</head>

<body>

<h1>Fechas y Monedas multi-pais</h1>
<h2>Valores por defecto (<%=Session.LCID%>)</h2>

<p>
<%
response.write("<p>")
response.write("Fecha: " & date() & "<br />")
response.write("Moneda: " & FormatCurrency(50000))
response.write("</p>")
Session.LCID=1034
%>
</p>

<h2>Para Espa&ntilde;a (<%=Session.LCID%>)</h2>
<p>
<%
response.write("<p>")
response.write("Fecha: " & date() & "<br />")
response.write("Moneda: " & FormatCurrency(50000))
response.write("</p>")
Session.LCID=2057
%>
</p>

<h2>Para Reino Unido (<%=Session.LCID%>)</h2>
<p>
<%
response.write("<p>")
response.write("Fecha: " & date() & "<br />")
response.write("Moneda: " & FormatCurrency(50000))
response.write("</p>")
Session.LCID=1033
%>
</p>

<h2>Para EEUU (<%=Session.LCID%>)</h2>
<p>
<%
response.write("<p>")
response.write("Fecha: " & date() & "<br />")
response.write("Moneda: " & FormatCurrency(50000))
response.write("</p>")
Session.LCID=1036
%>
</p>

<h2>Para Francia (<%=Session.LCID%>)</h2>
<p>
<%
response.write("<p>")
response.write("Fecha: " & date() & "<br />")
response.write("Moneda: " & FormatCurrency(50000))
response.write("</p>")
%>
</p>

<br><br>
<hr>
Art&iacute;culo disponible en: <a href="http://lineadecodigo.com/asp/fechas-y-monedas-multi-pais-con-asp/">http://lineadecodigo.com/asp/fechas-y-monedas-multi-pais-con-asp/</a><br/>
<a href="http://lineadecodigo.com" title="Linea de Codigo">lineadecodigo.com</a>

</body>
</html>

Change log

r234 by vcuervo on Apr 21, 2010   Diff
Fecha y moneda multi-pais
Go to: 
Project members, sign in to write a code review

Older revisions

All revisions of this file

File info

Size: 1780 bytes, 71 lines
Powered by Google Project Hosting