Re: Security (Urgent!!!)

From: Dominick Baier [DevelopMentor] (dbaier_at_pleasepleasenospamdevelop.com)
Date: 06/28/05

  • Next message: Steve: "RE: CAPICOM ASP.Net"
    Date: Tue, 28 Jun 2005 02:38:58 -0700
    
    

    Hello Vinod,

    like this :

    Response.Redirect(FormsAuthentication.GetRedirectUrl(txtUsername.Text, false));

    ??

    i have a full working example on my blog - maybe this clarifies things
    http://www.leastprivilege.com/content/binary/FormsAuthBestPractice.zip

    ---------------------------------------
    Dominick Baier - DevelopMentor
    http://www.leastprivilege.com

    > I user response.redirect and it doesnot redirect to the location
    > instead it adds the path as a query string to the url
    >
    > regards
    > vinod
    > "Dominick Baier [DevelopMentor]"
    > <dbaier@pleasepleasenospamdevelop.com> wrote in message
    > news:521813632555027199394443@news.microsoft.com...
    >
    >> Hello Vinod,
    >>
    >> what do you use to redirect back?
    >>
    >> ---------------------------------------
    >> Dominick Baier - DevelopMentor
    >> http://www.leastprivilege.com
    >>> Hi,
    >>>
    >>> I am developing a aspx login screen based on the roles
    >>> (Admin,User). If
    >>> the role is Admin he needs to acess a
    >>> particular folder in the system.
    >>> If the role is User he needs to access another folder in the
    >>> system.
    >>> How can i accomplish it.
    >>> Currently i am using this code but its not working fine
    >>> <location path="alfa/admin">
    >>> <system.web>
    >>> <authorization>
    >>> <allow roles ="Admin" />
    >>> <deny users="*" />
    >>> </authorization>
    >>> </system.web>
    >>> </location>
    >>> <location path="engine">
    >>> <system.web>
    >>> <authorization>
    >>> <allow roles ="Users"/>
    >>> <deny users="*" />
    >>> </authorization>
    >>> </system.web>
    >>> </location>
    >>> In the login screen if i enter a valid login also it is not
    >>> redirecting it to a page in the admin folder . It attaches the
    >>> redirection url and stays in the same page.
    >>> Any Help will be very grateful
    >>>
    >>> Regards
    >>> Vinod


  • Next message: Steve: "RE: CAPICOM ASP.Net"