Re: [jQuery] Parameters truncated after $.post

2006-12-01 Thread Ⓙⓐⓚⓔ
Java thinks all internal characters are utf... if you want to read gb2312 you have to convert them. On 12/1/06, 齐永恒 <[EMAIL PROTECTED]> wrote: i use gb2312, because my database is gbk, and our project all src is gb2312 coding, i use java, i find my server once recive is wrong encoding. so i wan

Re: [jQuery] Parameters truncated after $.post

2006-12-01 Thread 齐永恒
thanks , because some resesions , i use a fiter in reqeust, so in process jQ post, i set reqeust setCharacterEncoding("utf-8"). so , it is ok. i find jQ formToArray ,it is tranfer chinaese to utf-8 coding.so i recive it use utf-8. thank a lot. 在06-12-1,Blair McKenzie <[EMAIL PROTECTED]> 写道: I b

Re: [jQuery] Parameters truncated after $.post

2006-12-01 Thread Blair McKenzie
I believe it uses the encoding of the page it is in. That's the limit of my knowledge. On 12/1/06, 齐永恒 <[EMAIL PROTECTED]> wrote: i use gb2312, because my database is gbk, and our project all src is gb2312 coding, i use java, i find my server once recive is wrong encoding. so i want to know jQ

Re: [jQuery] Parameters truncated after $.post

2006-12-01 Thread 齐永恒
i use gb2312, because my database is gbk, and our project all src is gb2312 coding, i use java, i find my server once recive is wrong encoding. so i want to know jQ post the data use what encoding? 在06-12-1,Blair McKenzie <[EMAIL PROTECTED]> 写道: - The page with the script will need to have

Re: [jQuery] Parameters truncated after $.post

2006-12-01 Thread Blair McKenzie
- The page with the script will need to have the correct encoding - The page you are requesting needs to have the correct encoding (e.g. php has a method for setting encoding of page) - If you are using database data, the database needs to be configured to use the correct encoding Othe

Re: [jQuery] Parameters truncated after $.post

2006-12-01 Thread 齐永恒
ginal Message- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > On > > Behalf Of Christoph Baudson > > Sent: Thursday, November 30, 2006 8:23 AM > > To: jQuery Discussion. > > Subject: [jQuery] Parameters truncated after $.post > > > > Hi there,

Re: [jQuery] Parameters truncated after $.post

2006-11-30 Thread Blair McKenzie
m. > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of Christoph Baudson > Sent: Thursday, November 30, 2006 8:23 AM > To: jQuery Discussion. > Subject: [jQuery] Parameters truncated after $.post > > Hi there, > > in my sc

Re: [jQuery] Parameters truncated after $.post

2006-11-30 Thread Ⓙⓐⓚⓔ
m: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of Christoph Baudson > Sent: Thursday, November 30, 2006 8:23 AM > To: jQuery Discussion. > Subject: [jQuery] Parameters truncated after $.post > > Hi there, > > in my script I'm trying to send an 80KB String

Re: [jQuery] Parameters truncated after $.post

2006-11-30 Thread Christoph Baudson
request uri string like > 'key=value&key2=value2'. > > m. > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of Christoph Baudson > Sent: Thursday, November 30, 2006 8:23 AM > To: jQuery Discussion. > Subject:

Re: [jQuery] Parameters truncated after $.post

2006-11-30 Thread Matt Grimm
Sent: Thursday, November 30, 2006 8:23 AM To: jQuery Discussion. Subject: [jQuery] Parameters truncated after $.post Hi there, in my script I'm trying to send an 80KB String via $.post, but somehow I only receive about 4KB of it. It feels like the string is sent via GET, although I use $.post. I c

[jQuery] Parameters truncated after $.post

2006-11-30 Thread Christoph Baudson
Hi there, in my script I'm trying to send an 80KB String via $.post, but somehow I only receive about 4KB of it. It feels like the string is sent via GET, although I use $.post. I checkd the string in the ajax function before the line "xml.send(data);", and then it was still complete. Any ide