-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmillasAkilometros.aspx
More file actions
45 lines (43 loc) · 1.45 KB
/
millasAkilometros.aspx
File metadata and controls
45 lines (43 loc) · 1.45 KB
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="millasAkilometros.aspx.cs" Inherits="Conversor.millasAkilometros" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
<table style="width:100%;">
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text="Millas"></asp:Label>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</td>
<td> </td>
<td>
<asp:Label ID="Label2" runat="server" Text="Kilometros"></asp:Label>
<asp:TextBox ID="TextBox2" runat="server" ReadOnly="True"></asp:TextBox>
</td>
</tr>
<tr>
<td> </td>
<td>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Convertir" />
</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>
<asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="Inicio" />
</td>
<td> </td>
</tr>
</table>
</form>
</body>
</html>