在文件admin/ks.upfileform.asp里.自己找下面代码吧
'上传下载文件
Sub Down_UpFile()
Dim Path, InstallDir, DateDir
Path = KS.ReturnChannelUpFilesDir(ChannelID)
DateDir = Year(Now()) & Right("0" & Month(Now()), 2) & "/"
Path = Path & "/DownUrl/" & DateDir
Response.Write "<div align=""center"">"
Response.Write " <table width=""100%"" border=""0"" align=""center"" cellpadding=""0"" cellspacing=""0"">"
Response.Write " <form name=""UpFileForm"" method=""post"" enctype=""multipart/form-data"" action=""Include/UpFileSave.asp"">"
Response.Write " <tr>"
Response.Write " <td width=""100%""><input type=""file"" accept=""html"" size=""55"" name=""File1"" class='textbox'>"
Response.Write " <input type=""submit"" onclick=""LayerPrompt.style.visibility='visible';"" id=""BtnSubmit"" class='button' name=""Submit"" value=""开始上传 "">"
Response.Write " <input name=""BasicType"" value=""" & BasicType & """ type=""hidden"">"
Response.Write " <input name=""ChannelID"" value=""" & ChannelID & """ type=""hidden"">"
Response.Write " <input name=""Path"" value=""" & Path & """ type=""hidden"" id=""Path"">"
Response.Write " <input name=""UpLoadFrom"" value=""32"" type=""hidden"" id=""UpLoadFrom"">"
Response.Write "<input type=""checkbox"" name=""AutoReName"" value=""4"" checked>自动更名</td>"
Response.Write " </td>"
Response.Write " </tr>"
Response.Write " </form>"
Response.Write " </table>"
Response.Write "</div>"
End Sub
把上面4改成0吧