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.

link|improve this question

Response.Redirect()? – Frank White Aug 12 '11 at 17:36
@jjd thank you i added a few sentences at the bottom – Артём Царионов Aug 12 '11 at 17:38
@jjd also total beginner where woudl i put response.redirect? – Артём Царионов Aug 12 '11 at 17:38
1  
As soon as a user successfully logs in you can set a boolean session flag like Session("bnLoggedIn") = True. Then at the top of other pages you could say If bnLoggedIn = False Then Response.Redirect("some other page") – Frank White Aug 12 '11 at 17:48
feedback

2 Answers

up vote 2 down vote accepted

LoggedIn event fired, when user is successfully logined. e.g.

protected void Login1_LoggedIn(object sender, EventArgs e)
{
    Response.Redirect("Page.aspx");
}

Edit: Referring your comment, if you add the below code under <configuration> section of web.config, it will make sure, that unauthenticated user will not access to your page.

<location path="FolderNameIfAny/Page.aspx">
    <system.web>
        <authorization>
            <deny users="?"/>               
        </authorization>
    </system.web>
</location>

If you want protect your folder from unauthenticated users, do like..

 <configuration>
 ......................
 ......................
 <location path="FolderName1">
    <system.web>
        <authorization>
            <deny users="?"/>
                  <allow roles="role1"/>            
        </authorization>
    </system.web>
</location>

 <location path="FolderName2">
    <system.web>
        <authorization>
            <deny users="?"/>
                  <allow roles="role2,role3IfAny"/>         
        </authorization>
    </system.web>
</location>
   </configuration>

You can allow specific roles to access to specific folder.

link|improve this answer
how do i ensure that only logged in users can go to www.mysite.com/page.aspx? – Артём Царионов Aug 12 '11 at 17:45
thank you so much, how do i have multiple folders that are associated with multiple rules. another words role1 has access to folder1 and role2 has access to folder2 – Артём Царионов Aug 12 '11 at 18:04
Update my answer again according to your second comment. – Muhammad Akhtar Aug 12 '11 at 18:07
thank you! how do i allow multiple roles for the same location? like this? <allow roles="role1","role2"/> – Артём Царионов Aug 12 '11 at 18:12
did you see what I have added for FolderName2 location ? You can mention the comma seperated roles to specific folder. – Muhammad Akhtar Aug 12 '11 at 18:13
show 5 more comments
feedback

ensure you have an authorisation section in your web.config with <deny users="?"/> That prevents unauthenticated users accessing your site.

Forms auth does have a way to redirect to a different page, but i'm not sure how you do it using the login control.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.