473,946 Members | 31,634 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Goofy Bullsh!t 2.0 Membership Date Values

What's with this software? Every day its a new surprise with some goofy
bullsh!t.
I finally make time to try to finish building out Membership logging and
reporting and today its user data in the SQL Server 2005 aspnet_Membersh ip
table such as LastLockoutDate and FailedPassword with dates for all users
entered as 1/1/1754.

Not only is this goofy bullsh!t it is grossly incorrect goofy bullsh!t. I
have used one of my three test users to test getting locked out so I could
learn to use the Unlock method and I certainly did not enter that user's
incorrect credentials on 1/1/1754. I have no idea how the other users have
data has been manipulated either.

What the heck is going on here?

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee. com
URL http://www.metromilwaukee.com/clintongallagher/
Jun 5 '06 #1
3 1590
Sql Server's minimum date is 1/1/1753 .. coincidence ??

I think it is explained pretty well here
http://msdn2.microsoft.com/en-us/lib...pprovider.aspx
in the membership provider documentation

If user is locked out due to too many bad password attempts, the lockout
time attribute is returned.

If user is locked out due to too many bad password answer attempts, the
value stored in the attribute defined by
attributeMapFai ledPasswordAnsw erLockoutTime is returned.

If user is locked out due to both a bad password and too many bad password
attempts, the most recent date/time value is returned.

If the account is not locked out, return 1/1/1754 for SQL compatibility.
Cheers,

Greg Young
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message
news:OR******** ******@TK2MSFTN GP02.phx.gbl...
What's with this software? Every day its a new surprise with some goofy
bullsh!t.
I finally make time to try to finish building out Membership logging and
reporting and today its user data in the SQL Server 2005 aspnet_Membersh ip
table such as LastLockoutDate and FailedPassword with dates for all users
entered as 1/1/1754.

Not only is this goofy bullsh!t it is grossly incorrect goofy bullsh!t. I
have used one of my three test users to test getting locked out so I could
learn to use the Unlock method and I certainly did not enter that user's
incorrect credentials on 1/1/1754. I have no idea how the other users have
data has been manipulated either.

What the heck is going on here?

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee. com
URL http://www.metromilwaukee.com/clintongallagher/

Jun 5 '06 #2
Thanks for your reply Greg. That same document was referred to me
by somebody else and here is my cc reply...

I don't use the AD Provider but I do see by the document you refer to that
the explanation of this goofy date sh!t is much more lucid and complete than
in other documents I did and have read [1] but still happen to have missed
the pithy sentence that is supposed to pass for documentation.

So I know your not getting on my case but it is a ridiculous postulation
that suggests we have to read all documentation Microsoft has ever had
written to learn what should have been clearly and completely elucidated
by a competent tech writer in the first place which could have and should
have then been distributed to others writing documentation for other
providers.

The MSDN2 documentation is GFS compared to earlier efforts. It seriously
lacks clarity and completeness AFIC so thanks again for providing a
reference that while still incomplete is better than what I tried to rely
on.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee. com
URL http://www.metromilwaukee.com/clintongallagher/

[1]
http://msdn2.microsoft.com/en-us/lib...ckoutdate.aspx


"Greg Young" <dr************ *******@hotmail .com> wrote in message
news:uP******** ******@TK2MSFTN GP04.phx.gbl...
Sql Server's minimum date is 1/1/1753 .. coincidence ??

I think it is explained pretty well here
http://msdn2.microsoft.com/en-us/lib...pprovider.aspx
in the membership provider documentation

If user is locked out due to too many bad password attempts, the lockout
time attribute is returned.

If user is locked out due to too many bad password answer attempts, the
value stored in the attribute defined by
attributeMapFai ledPasswordAnsw erLockoutTime is returned.

If user is locked out due to both a bad password and too many bad password
attempts, the most recent date/time value is returned.

If the account is not locked out, return 1/1/1754 for SQL compatibility.
Cheers,

Greg Young
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message
news:OR******** ******@TK2MSFTN GP02.phx.gbl...
What's with this software? Every day its a new surprise with some goofy
bullsh!t.
I finally make time to try to finish building out Membership logging and
reporting and today its user data in the SQL Server 2005
aspnet_Membersh ip table such as LastLockoutDate and FailedPassword with
dates for all users entered as 1/1/1754.

Not only is this goofy bullsh!t it is grossly incorrect goofy bullsh!t.
I have used one of my three test users to test getting locked out so I
could learn to use the Unlock method and I certainly did not enter that
user's incorrect credentials on 1/1/1754. I have no idea how the other
users have data has been manipulated either.

What the heck is going on here?

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee. com
URL http://www.metromilwaukee.com/clintongallagher/


Jun 6 '06 #3
clintonG <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote:
Thanks for your reply Greg. That same document was referred to me
by somebody else and here is my cc reply...

I don't use the AD Provider but I do see by the document you refer to that
the explanation of this goofy date sh!t is much more lucid and complete than
in other documents I did and have read [1] but still happen to have missed
the pithy sentence that is supposed to pass for documentation.


I don't think it's too bad in [1] as referenced:

<quote>
The default value for the LastLockoutDate property is determined by the
membership provider. For example, when a membership user is created
using the SqlMembershipPr ovider provider, the LastLockoutDate property
for the user is initially set to 01/01/1754.
</quote>

That's a good enough explanation for me.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Jun 12 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1488
by: Blair Fraser | last post by:
This seems incredibly bizzare. I'm trying to sub in a string with a backslash using re.sub. If that string has a \b in it I can't stop it from being interpreted as a backspace, even though the string is a raw string and prints correctly. >>> sub_in_x = r'{\bf}' # This one won't work >>> sub_in_y = r'{\if}' # This one will work, but I don't want a \if >>> print sub_in_x # Prints with \b as a slash and a b {\bf} >>> print...
4
1841
by: Jozef | last post by:
Hello, I have forms in my database that use grey as the back color. When I convert them to XP, They all look goofy. The grey becomes two tone. The grey used in the controls are dark, the grey used in the form detail is light, almost white. I can change the back color on the forms to match the controls, but on controls like tabs etc, it still looks goofy (since I can't change the backcolor on a tab control or button etc.). Is there...
8
1589
by: Giorgio | last post by:
Hi all, i have a problem with a website where i use asp 3 and a global.asa in the root. In global.asa i use some aaplication variables which contains strings, such as: Application("str1")="text". Sometimes (even if i dont change the code) application variables becomes null To solve the problem i delete from server my global.asa and upload new one (with same code inside) Provider says their servers are all right
3
1485
by: Andre Ranieri | last post by:
Hello, I would certainly appreciate some feedback to the issue I'm experiencing in my first major WMI application. When I navigate to a new child form I usually dispose of the one I'm navigating from, but I often end up with multiple title bars as shown in the following screenshot. I've tried setting the child forms' FormBorderStyle = None but that doesn't seem to help. http://www.senske.com/images/wmi-goof.jpg
1
1650
by: Andre Ranieri | last post by:
Hello, I apologize for multiple posting of this question but I used the wrong acronym earlier. I meant to say MDI. I would certainly appreciate some feedback to the issue I'm experiencing in my first major MDI application. When I navigate to a new child form I usually dispose of the one I'm navigating from, but I often end up with multiple title bars as shown in the following screenshot. I've tried setting the child forms'...
66
7208
by: mensanator | last post by:
Probably just me. I've only been using Access and SQL Server for 12 years, so I'm sure my opinions don't count for anything. I was, nevertheless, looking forward to Sqlite3. And now that gmpy has been upgraded, I can go ahead and install Python 2.5. So I open the manual to Section 13.13 where I find the first example of how to use Sqlite3:
4
2996
by: Hillbilly | last post by:
Maybe this is or isn't some kind of bug but it sure is goofy and remains a mystery that really has me puzzled for two reasons... // goofy syntax functions as expected... Panel finalStepButton = Page.Master.FindControl("CenterPanelContent $ItemBuilderWizard $StepNavigationTemplateContainerID $StepNavFinalStepButton") as Panel;
0
10152
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9981
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
11557
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8248
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
7421
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
6111
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
6330
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
4533
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3539
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.