为什么我的论坛上传文件会提示这样的一串代码

来源:百度知道 编辑:UC知道 时间:2024/09/22 18:23:02
<%@ language="VBScript" %>
<%
Option Explicit

Const lngMaxFormBytes = 200

Dim objASPError, blnErrorWritten, strServername, strServerIP, strRemoteIP
Dim strMethod, lngPos, datNow, strQueryString, strURL

If Response.Buffer Then
Response.Clear
Response.Status = "500 Internal Server Error"
Response.ContentType = "text/html"
Response.Expires = 0
End If

Set objASPError = Server.GetLastError
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<HTML><HEAD><TITLE>无法显示此页</TITLE>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=GB2312">
<STYLE type="text/css">
BODY { font: 9pt/12

这不是乱码,是一段包含VBScript代码的HTML也就是网页的源代码,如果是你自己做的BBS,请检查下你是不是通过服务器来连接的.直接打开HTML的话是可能无法正常跳转页面的

这不是乱码,是