The Question is,
In a regular HTTP Request to a server (non-ajax), Is the Query String passed by GET method to some server, get affected by the encoding specified by this :
<meta http-equiv='Content-Type' content='text/html; charset=gb2312'>
If the answer is no, How to define the encoding schema for the parameters of GET method ?
example: If I have a html that looks:
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=gb2312'>
</head>
<body>
<form method="GET" action="/some/server">
<input type="text" name="name1" value="someNon-ASCII_value1" />
<input type="submit" />
</form>
</body>
<html>
When the user click the submit
button, what will be the encoding of the value someNon-ASCII_value1
?