non C# question

  • Thread starter Thread starter Jassim Rahma
  • Start date Start date
J

Jassim Rahma

hi,

i know it's not a C# question but i am developing a C# database
application and would like to know what is the maximum characters'
digits for the following:

1. Email Address
2. Windows XP computer name
3. Windows XP user name
4. Windows 2003 Active Directory user name
5. IP Address



Many Thanks,
Jassim Rahma
 
Hello Jassim,

Try to googling "windows username lenght" , it takes me 1 minutes to find
that

user: 14 is the max for NT4 compatibility. 127 is the AD limit
comp: The absolute maximum name length is 15 for any type of networking that
uses the NetBIOS API



JR> i know it's not a C# question but i am developing a C# database
JR> application and would like to know what is the maximum characters'
JR> digits for the following:
JR>
JR> 1. Email Address
JR> 2. Windows XP computer name
JR> 3. Windows XP user name
JR> 4. Windows 2003 Active Directory user name
JR> 5. IP Address
JR> Many Thanks,
JR> Jassim Rahma

---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/members/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
Jassim said:
what is the maximum characters'
digits for the following:

1. Email Address

320 per RFC 2821, which is broken down as follows: 64 for the local part
(user), 255 for the domain part, plus the separator (@).
5. IP Address

IPv4: 15
IPv6: 45 in the alternate form (last 32 bits written as four decimal
octets), 39 in the standard form.
 
Back
Top