-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.aspx
More file actions
48 lines (44 loc) · 1.47 KB
/
Copy pathdefault.aspx
File metadata and controls
48 lines (44 loc) · 1.47 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
46
47
48
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="default.aspx.cs" Inherits="DilDeneme._default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.style1 {
width: 100%;
}
.style2 {
width: 201px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<table class="style1">
<tr>
<td class="style2">Kelime Gir:</td>
<td>
<asp:TextBox ID="txttext" runat="server" TextMode="MultiLine"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style2">Dil Seçimi:</td>
<td>
<asp:DropDownList ID="ddltolang" runat="server">
<asp:ListItem Value="en">English</asp:ListItem>
<asp:ListItem Value="fr">French</asp:ListItem>
<asp:ListItem Value="es">Spanish</asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr>
<td class="style2"> </td>
<td> <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Translate" />
</td>
</tr>
</table>
</div>
</form>
</body>
</html>