Guys I an running Svr 2003 on a dedicated server I have a file and in the file is this simple code:
<%@ Language=VBScript %>
<%
option explicit
Response.Expires = -1
Server.ScriptTimeout = 600
' All communication must be in UTF-8, including the response back from the request
Session.CodePage = 65001
%>
If I put anything below those lines I get an Expected Statement error, it does not matter what it is, for example I have tried:
<%@ Language=VBScript %>
<%
option explicit
Response.Expires = -1
Server.ScriptTimeout = 600
' All communication must be in UTF-8, including the response back from the request
Session.CodePage = 65001
%>
<% <div> </div> %>
I have also tried:
<%@ Language=VBScript %>
<%
option explicit
Response.Expires = -1
Server.ScriptTimeout = 600
' All communication must be in UTF-8, including the response back from the request
Session.CodePage = 65001
%>
<%
</form>Email Address:<input type="text" name="email" /></form>
%>
the result is the same,anything I put in ASP tags is rejected unless it is straight asp code such as :
<%Response.write("Warning - file(s) being uploaded with identical file names will be overwritten and replaced!")%>
I cant use DIVs or Forms,or image tags any ideas, virus maybe?
<%@ Language=VBScript %>
<%
option explicit
Response.Expires = -1
Server.ScriptTimeout = 600
' All communication must be in UTF-8, including the response back from the request
Session.CodePage = 65001
%>
If I put anything below those lines I get an Expected Statement error, it does not matter what it is, for example I have tried:
<%@ Language=VBScript %>
<%
option explicit
Response.Expires = -1
Server.ScriptTimeout = 600
' All communication must be in UTF-8, including the response back from the request
Session.CodePage = 65001
%>
<% <div> </div> %>
I have also tried:
<%@ Language=VBScript %>
<%
option explicit
Response.Expires = -1
Server.ScriptTimeout = 600
' All communication must be in UTF-8, including the response back from the request
Session.CodePage = 65001
%>
<%
</form>Email Address:<input type="text" name="email" /></form>
%>
the result is the same,anything I put in ASP tags is rejected unless it is straight asp code such as :
<%Response.write("Warning - file(s) being uploaded with identical file names will be overwritten and replaced!")%>
I cant use DIVs or Forms,or image tags any ideas, virus maybe?