URL length..is there a max?

  • Thread starter Thread starter DDK
  • Start date Start date
D

DDK

Does anyone know if there is a max length in charcters that a URL string can
be? Also do different browsers(Netscape, IE) have different max lengths?

Thanks,
d.
 
Think the max length for a GET request (querything goes in as a Get request) is 255 character or close

Regards

HD

nntp://msnews.microsoft.com/microsoft.public.dotnet.framework.aspnet/<#[email protected]>

Does anyone know if there is a max length in charcters that a URL string can
be? Also do different browsers(Netscape, IE) have different max lengths?

Thanks,
d.




[microsoft.public.dotnet.framework.aspnet]
 
DDK said:
Does anyone know if there is a max length in charcters that a URL
string can be? Also do different browsers(Netscape, IE) have
different max lengths?

Unfortunately, there's no specified maximum URL length. That means once you
exceed a certain threshold (1024 chars is a good rule of thumb) you're
running the risk that some component (web server, proxy, browser) truncates
the URL.

Cheers,
 
Back
Top