-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcurrency.aspx
27 lines (25 loc) · 919 Bytes
/
currency.aspx
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="currency.aspx.cs" Inherits="WebDemo.currency" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Currency Conversion</title>
</head>
<body>
<h2>Convert INR to USD</h2>
<form id="form1" runat="server">
Amount in INR<br />
<asp:TextBox ID="txtAmount" runat="server"></asp:TextBox>
<p></p>
Target Currency<br />
<asp:DropDownList ID="ddlCurrency" runat="server">
<asp:ListItem Text="USD" Value="70" />
<asp:ListItem Text="Euro" Value="80" />
<asp:ListItem Text="SND" Value="50" />
</asp:DropDownList>
<p />
<asp:Button ID="btnConvert" runat="server" Text="Convert" OnClick="btnConvert_Click" />
<p></p>
<asp:Label ID="lblUSD" runat="server" Text=""></asp:Label>
</form>
</body>
</html>