-
Notifications
You must be signed in to change notification settings - Fork 0
/
GenerateImage.aspx
79 lines (59 loc) · 2.34 KB
/
GenerateImage.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="GenerateImage.aspx.cs" Inherits="SlideImageGenerator.GenerateImage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>File Manger</title>
<script src="scripts/jquery-3.3.1.js" type="text/javascript"></script>
<script src="scripts/jquery-3.3.1.min.js" type="text/javascript"></script>
<script src="scripts/bootstrap.min.js" type="text/javascript"></script>
<script src="scripts/bootstrap.js" type="text/javascript"></script>
<link href="Content/bootstrap.min.css" type="text/css" rel="stylesheet" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js" type="text/javascript"></script>
<style>
a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
}
a:hover {
background-color: #ddd;
color: black;
}
.previous {
background-color: #f1f1f1;
color: black;
}
.next {
background-color: #f1f1f1;
color: black;
}
.round {
border-radius: 50%;
}
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
<div class="navbar navbar-inverse navbar-fixed-top">
<div align="left" style="margin-top: 10%">
<asp:Label ID="LabelTitle" runat="server" Text="Image Generator" style="font-size: x-large; font-weight: 700; color: #FFFFFF; "></asp:Label>
</div>
</div>
<div class="container body-content">
<div align="left" style="margin-top: 20%">
<div align="left">
<asp:Label ID="LabelAuthor" runat="server" Text="Author Information : " style="font-weight: 700" TabIndex="-1"></asp:Label>
<asp:TextBox ID="TextBoxAuthor" runat="server" Width="350px" TabIndex="1"></asp:TextBox>
</div>
<div align="left"style="margin-top: 5%">
<asp:Label ID="Label1" runat="server" Text="Session Information: " style="font-weight: 700" TabIndex="-1"></asp:Label>
<asp:TextBox ID="TextBoxSession" runat="server" Width="350px" TabIndex="2"></asp:TextBox>
<asp:Button ID="ImageGenerator" runat="server" Text="Generate Image" OnClick="ImageGenerate" TabIndex="3" /> </div>
</div>
</div>
</form>
</body>
</html>