-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathv1_aditi_103.aspx
51 lines (45 loc) · 1.74 KB
/
v1_aditi_103.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="v1_aditi_103.aspx.cs" Inherits="GreetingsWebApp.aditi_103_D2.v1_aditi_103" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form runat="server">
<div>
Choose Background Color:<br />
<asp:DropDownList ID="Bc_list" runat="server">
</asp:DropDownList>
<br />
Choose a Font:<br />
<asp:DropDownList ID="Font_list" runat="server">
</asp:DropDownList>
<br />
specify a numeric font size:<br/>
<asp:TextBox ID="Font_size" runat="server"></asp:TextBox>
<br />
Choose a border Style:<br />
<asp:RadioButtonList ID="Border_style" runat="server" >
</asp:RadioButtonList>
<br />
<asp:CheckBox ID="Checkbox" runat="server" Text="Add the Default Picture:" />
<br />
Enter the greeting text Below:<br />
<asp:TextBox ID="Greeting_text" runat="server"></asp:TextBox>
<br />
<asp:Button ID="Button" runat="server" Text="Update" OnClick="Update_Click" />
<br />
<br />
<asp:Panel ID="pnlCard" runat="server"
Width="339px" Height="481px" HorizontalAlign="Center"
style="POSITION: absolute; TOP: 16px; LEFT: 313px;">
<br />
<asp:Label ID="lblGreeting" runat="server" Width="256px"
Height="150px" /><br /><br /><br />
<asp:Image ID="imgDefault" runat="server" Width="212px"
Height="160px" ImageUrl="~/aditi_103_D2/index.jpg" />
</asp:Panel>
</div>
</form>
</body>
</html>