I've used WebAccount on 3 of my own projects now and it's working pretty well for me. I've had to customize it for each project:
One project didn't want users to have to log in to use the site. This was an easy change: I added the "login as guest" code to the Session_Start handler in Global.asax. When a new user visits, or when the current user logs out, they get automatically logged in as Guest.
One project wanted hit logging and session logging. Rather than doing it separately somehow, I added that ability to the WebAccountDataSQL class in that project, since that's the only place in the system that knows the database connection string. That will probably change as the project grows.
Overall, it's been pretty successful. It'd be nice to hear of someone other than me deploying it though. :)
8:28:54 AM
|