I want to restrict for anonymous user.
If anonymous user click the wish list or category or product detail, redirect to login page.
I'm finding source but I can't find.
How do I handle it?
Thank you.
How to acess detail page only for login user?
Re: How to acess detail page only for login user?
In your conlib folder edit user control being used on category, product details and wishlist and in their Page_Load method put following code at very start of the method for redirection.
Code: Select all
if (Token.Instance.User.IsAnonymous)
Response.Redirect("~/Login.aspx");