S
Simon Prince
Hi
I have an classic ASP page that contains nothing else but the following
code...
<%@ Language=VBScript %>
<%
Response.clear
Response.redirect("/Intranet")
%>
I'm was trying to write an equivalent page in ASP.NET but am getting nowhere
fast !!!
My entire page is below (No Code Behind)...
<%@ Page Language="vb" AutoEventWireup="false" enableviewstate="False"%>
<script runat=server>
Public Sub Page_Load()
Response.Clear()
Response.Redirect("/Intranet")
End Sub
</script>
Presently this does return an error, but all I get is a blank page with the
HTML, BODY etc structure defined.
HELP PLEASE !!!!
Simon
I have an classic ASP page that contains nothing else but the following
code...
<%@ Language=VBScript %>
<%
Response.clear
Response.redirect("/Intranet")
%>
I'm was trying to write an equivalent page in ASP.NET but am getting nowhere
fast !!!
My entire page is below (No Code Behind)...
<%@ Page Language="vb" AutoEventWireup="false" enableviewstate="False"%>
<script runat=server>
Public Sub Page_Load()
Response.Clear()
Response.Redirect("/Intranet")
End Sub
</script>
Presently this does return an error, but all I get is a blank page with the
HTML, BODY etc structure defined.
HELP PLEASE !!!!
Simon