-
Notifications
You must be signed in to change notification settings - Fork 0
/
pageAdd.asp
164 lines (145 loc) · 5.9 KB
/
pageAdd.asp
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!-- #include file="Assets/inc/conn.asp" -->
<!-- #include file="Assets/inc/system.asp" -->
<!-- #include file="Assets/inc/userControl.asp" -->
<%if user("Yetki")<>1 then response.Redirect("default.asp")%>
<%
Function Temizleyici(TMZ)
TMZ = replace(TMZ, ",", "'")
Temizleyici = TMZ
End Function
if isnumeric(Temizleyici(request.QueryString("bookID")))=false then
response.redirect "start.asp"
response.End
end if
if request.QueryString("bookID")<>"" and isnumeric(request.QueryString("bookID")) then
bookID = request.QueryString("bookID")
else
%>
<script language="javascript" type="text/javascript">
alert("Hatalı giriş. Lütfen bilgilerin doğruluğundan emin olun.");
location.href="start.asp";
</script>
<%
end if
sql="Select * From de_Book WHERE bookID="&bookID&""
Set bookInfo = conn.Execute(sql)
if request.ServerVariables("REQUEST_METHOD")="POST" then
Set Upload = Server.CreateObject("Persits.Upload")
Count = upload.save
dim uploadsDirVar
uploadsDirVar = server.MapPath("Page_img") & "/"
if Upload.Form("PageOne")<>"" then
set YeniPg = server.createobject("adodb.recordset")
sql="Select * From de_Page"
YeniPg.open sql,conn,1,3
iname=""
if count <> 0 then
set f = upload.files("upload")
IF f.ext<>".jpg" and f.ext<>".png" and f.ext<>".gif" and f.ext<>".jpeg" and f.ext<>".JPG" then
%>
<script language="javascript" type="text/javascript">
alert("İstenmeyen dosya türü hatası.\nDosya yükleme başarısız.");
location.href="pages.asp?BookID=<%=bookID%>";
</script>
<%
ELSE
Randomize
Rast1 = int(RND*10)+0
Rast2 = int(RND*100)+0
Rast3 = int(RND*1000)+0
Rast4 = int(RND*10000)+0
Rast5 = int(RND*100000)+0
Rast6 = int(RND*1000000)+0
RAST = Rast1 & "_" & Rast2 & "_" & Rast3 & "_" & Rast4 & "_" & Rast5 & "_" & Rast6
f.saveas uploadsDirVar & "DegerlerEgitimi_" & RAST & f.ext
iname = "DegerlerEgitimi_" & RAST & f.ext
END IF
end if
YeniPg.AddNew
YeniPg("teachersID")=user("userID")
YeniPg("Photo")=iname
YeniPg("Page")=upload.Form("PageOne")
YeniPg("bookID")=upload.Form("bookID")
YeniPg.Update
%>
<script type="text/javascript">
alert("Başarıyla eklendi.");
location.href="pages.asp?BookID=<%=bookID%>";
</script>
<%
else
%>
<script type="text/javascript">
alert("Lütfen sayfa içeriğini doldurun.");
location.href="pageAdd.asp?BookID=<%=bookID%>";
</script>
<%
end if
end if
%>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Değerler Eğitimi - Sayfalar</title>
<link href="Assets/css/main.css" rel="stylesheet" type="text/css" />
<script src="Assets/ckeditor/ckeditor.js"></script>
</head>
<body>
<div id="main">
<!-- #include file="Assets/inc/sidebar.asp" -->
<div id="panel">
<!-- #include file="Assets/inc/userbar.asp" -->
<div id="maincontent">
<!-- //ContentBox1 -->
<div class="contentpanel">
<div class="contenttitle">
<table width="698" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="349" align="left" valign="middle">Yeni Sayfa > <%=bookInfo("BookName")%></td>
<td width="349" align="right" valign="middle"><a href="books.asp" class="backlink">Kitaplar</a> <a href="pages.asp?bookID=<%=bookInfo("BookID")%>" class="backlink">Sayfalar</a></td>
</tr>
</table>
</div>
<div class="contentbox">
<form action="" method="POST" enctype="multipart/form-data" accept-charset="ISO-8859-9">
<input type="hidden" name="bookID" value="<%=bookID%>" />
<table width="696" border="0" cellspacing="1" cellpadding="0">
<tr bgcolor="#DFF4FF">
<td width="100" height="30" align="right" valign="middle"><span style="font-size:14px;">Sayfa İçeriği:</span></td>
<td width="593" height="30" align="left" valign="middle"><textarea name="PageOne" class="formarea"></textarea></td>
</tr>
<tr bgcolor="#CAEDFF">
<td height="30" align="right" valign="middle"><span style="font-size:14px;">Resim:</span></td>
<td height="30" align="left" valign="middle"> <input type="file" name="upload" />
<span class="backlink">.jpg</span> <span class="backlink">.png</span> <span class="backlink">.gif</span> <span class="backlink">.jpeg</span></td>
</tr>
<tr>
<td height="30" align="right" valign="middle"> </td>
<td height="30" align="left" valign="middle"><input type="submit" value="Ekle" class="formadd" /></td>
</tr>
</table>
</form>
</div>
</div>
</div>
</div>
<div id="clear"></div>
<!-- #include file="Assets/inc/footer.asp" -->
</div>
<script>
CKEDITOR.replace( 'PageOne', {
// Define the toolbar groups as it is a more accessible solution.
toolbarGroups: [
{"name":"styles","groups":["styles"]},
{"name":"basicstyles","groups":["basicstyles"]},
{"name":"links","groups":["links"]},
{"name":"paragraph","groups":["list","blocks"]},
],
// Remove the redundant buttons from toolbar groups defined above.
removeButtons: 'Subscript,Superscript,Anchor,Styles,Specialchar'
} );
</script>
</body>
</html>