right now when a user logs in, they see specific content on that same page:
<asp:LoginView ID="LoginView" runat="server">
<AnonymousTemplate>
Please login <br />
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:qcvalues_testConnectionString %>"
SelectCommand="SELECT * FROM [batchinfo]"></asp:SqlDataSource>
<asp:Login ID="LoginControl" runat="server" />
</AnonymousTemplate>
<LoggedInTemplate> you are logged in </LoggedInTemplate> ................
if i do Response.Redirect() to another page let's say default2.aspx - how do i ensure that the user does not have access to default2.aspx unless they are logged in?
however i would like the user to be directed to a different page when they are logged in.
Session("bnLoggedIn") = True. Then at the top of other pages you could sayIf bnLoggedIn = False Then Response.Redirect("some other page")– Frank White Aug 12 '11 at 17:48