-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConvertProject.aspx
71 lines (43 loc) · 1.67 KB
/
ConvertProject.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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ConvertProject.aspx.cs" Inherits="Base64ToConvertProject.WebForm1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<div class="row">
<h1 style="text-align:center; color:#ff6666 " >Convert Project</h1>
<form id="form1" runat="server">
<div class="col-md-6">
<h4 style="color: #81d8d0 ">Yüklenecek olan dosyayı PDF formatında seçiniz: </h4>
<asp:FileUpload id="FileUpload1"
runat="server">
</asp:FileUpload>
<br /><br />
<asp:Button id="UpLoadButton"
Text="Dosya Yükleyiniz"
OnClick="UploadButton_Click"
runat="server">
</asp:Button>
<br /><br />
<h4 style="color: #67363a ">Pdf Convert Base64</h4>
<br />
<asp:TextBox width="50%" height="150px" runat="server" ID="txbLabel"></asp:TextBox>
<hr />
<asp:Label id="UploadStatusLabel" runat="server">
</asp:Label>
</div>
<br />
<br />
<div class="col-md-6">
<h4 style="color: #67363a"> Base64 Convert PDF</h4>
<div id="deneme" runat="server">
<object id="obj1" data="data:application/pdf;base64,pdfBase64" type="application/pdf">
</object>
</div>
</div>
<div>
</div>
</form>
</body>
</html>