| Added: November/19/2006 at 3:12pm | IP Logged
|
|
|
Version 1.2 of Licensing DLL Released
Here are the changes:
- New setting in web.config can be enabled which will set values for more of the session variables during login.
- Small fix to an error message for concurrent logins that could cause a syntax error under certain situations.
- This version now fully supports the Advanced Database Logging Mod should that be purchased. I have a had a customer testing it for 3 months now and says the advanced database logging is working great and he has caught a lot of people giving out/sharing their login information out because of it.
Please Note: This will most likely be the last release that I compile under .NET 1.1. There are some changes I want to make that only .NET 2.0 supports and I probably will be discontinuing .NET 1.1 development as far as the Authentication DLL goes. It is too much work to have two different versions and .NET 1.1 is getting pretty old anyway.
Below is the new value for the web.config to set the addtional session variables during login.
<!-- Setting below specifies the creation of more session variables during login. -->
< add key="ASPPUse_Extended_Session_Info" value="true" />Which will give you access to all of the following as well as the ones that are always set.
HttpContext.Current.Session( "First_Name") HttpContext.Current.Session("Last_Name") HttpContext.Current.Session("Company_Name") HttpContext.Current.Session("Email") HttpContext.Current.Session("Address") HttpContext.Current.Session("City") HttpContext.Current.Session("State_Province") HttpContext.Current.Session("Zipcode_Postal_Code") HttpContext.Current.Session("Phone") HttpContext.Current.Session("Expiration_Date") HttpContext.Current.Session("Custom1") HttpContext.Current.Session("Custom2") HttpContext.Current.Session("Custom3") HttpContext.Current.Session("Custom4") HttpContext.Current.Session("Custom5") HttpContext.Current.Session("Custom6")
__________________
Best Regards,
Christopher Williams
www.CJWSoft.com
|