file_edit.htm
2.65 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
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
<!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=<?php echo $cfg_soft_lang; ?>">
<title>文件管理器</title>
<link rel="stylesheet" type="text/css" href="css/base.css">
<script language="javascript">
function Post()
{
if (document.form1.filename.value=="")
{
alert("文件名不能为空。");
document.form1.filename.focus();
return false;
}
}
</script>
</head>
<body background='images/allbg.gif' leftmargin="8" topmargin='8'>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#ECFAD3" style="margin-bottom:8px;">
<tr>
<td height="28" style="border:1px dotted #BFD67C;padding-left:10px;" background='images/wbg.gif'>
◇<a href='file_manage_main.php?activepath={dede:global name='activepath'/}'><b>文件管理</b></a> >> <b>修改/新建文件</b>
</td>
</tr>
</table>
<form method="POST" action="file_manage_control.php" name=form1 onSubmit="return Post()">
<input type="hidden" name="fmdo" value="edit" />
<input type="hidden" name="backurl" value="{dede:global name='backurl' function='urlencode(@me)'/}" />
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#cfcfcf">
<tr>
<td width="100%" bgcolor='#ffffff'>
<table width='100%' border='0' cellpadding='3' cellspacing='1' bgcolor='#cfcfcf'>
<tr bgcolor='#EEF4EA'>
<td colspan='2' background='images/wbg.gif' height='26' style="padding-left:10px;">
<font color='#666600'><b>修改/新建文件:</b></font>
</td>
</tr>
<tr bgcolor='#FFFFFF'>
<td>工作目录</td>
<td>
<input name='activepath' size='40' class='alltxt' value="{dede:global name='activepath'/}" />
(空白表示根目录 ,不允许用 “..” 形式的路径)
</td>
</tr>
<tr bgcolor='#FFFFFF'>
<td>文件名称</td>
<td>
<input name=filename size=40 class='alltxt' value="{dede:global name='filename'/}" />
(不允许用 “..” 形式的路径)
</td>
</tr>
<tr bgcolor='#FFFFFF'>
<td colspan='2'>
{dede:global name='contentView'/}
</td>
</tr>
<tr>
<td colspan='2' height="36" bgcolor='#F9FCEF' align='center'>
<input type=submit value=" 保 存 " name='B1' class="coolbg np" />
<input type=reset value="取消修改" name='B2' class="coolbg np" />
<input type=button value="不理返回" name='B4' class="coolbg np" onClick="javascript:history.go(-1);" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</body>
</html>