Link to home
Start Free TrialLog in
Avatar of seasons712
seasons712

asked on

The length of parameters string

Dear All,

I would like to know how long about the maximum length of parameters string in URL?  The string is the URL which is the part after the character '?'.  For example:

http://www.abc.com?a=1&b=2&c=3

I want to know the maximum length of string after
"www.abc.com?".

Many thanks,
Seasons
Avatar of CJ_S
CJ_S
Flag of Netherlands image

The maximum length of the url is 1024 characters.

CJ
For passing parameters you'd better use the method=post of a form since that won't use the querystring.

CJ
Avatar of seasons712
seasons712

ASKER

Hi CJ,

Does the length of the URL include the part of URL before '?' character or the whole string of URL..?

Many Thanks.

Seasons
ASKER CERTIFIED SOLUTION
Avatar of third
third
Flag of Philippines image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you very much.

;)