In ASP.Net 1.1 Application_BeginRequest event needs to be handled in the
Global.asax
Sub Application_BeginRequest(ByVal sender As Object, ByVal e As EventArgs)
If Request.RawUrl.ToUpper().IndexOf("DEFAULT.ASPX") > -1 Then
Response.Redirect("MyStartPage.aspx")
End If
End Sub
Of course, "MyStartPage.aspx" can be stored as a configurable setting in
web.config.
TJ
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.