views:

32

answers:

2

I'm using DNN 5. When a user logs in, I want to load some data into the session. Where should I add my code? Should I intervene into the login.aspx's code behind?

+2  A: 

The solutions seems to be writing a custom authentication provider.

lmsasu
A: 

One option would be to set the page the users sees upon login and add a custom module to that page. That would get you out of writing an authentication provider.

notandy

related questions