non C# question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jassim Rahma

    non C# question

    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

    *** Sent via Developersdex http://www.developersdex.com ***
  • Michael Nemtsev

    #2
    Re: non C# question

    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


    Comment

    • Chris Priede

      #3
      Re: non C# question

      Jassim Rahma wrote:[color=blue]
      > what is the maximum characters'
      > digits for the following:
      >
      > 1. Email Address[/color]

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

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


      --
      Chris Priede


      Comment

      Working...