Return-Path: Delivered-To: apmail-struts-user-archive@www.apache.org Received: (qmail 82805 invoked from network); 21 Sep 2006 23:51:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 21 Sep 2006 23:51:52 -0000 Received: (qmail 77387 invoked by uid 500); 21 Sep 2006 23:51:43 -0000 Delivered-To: apmail-struts-user-archive@struts.apache.org Received: (qmail 76716 invoked by uid 500); 21 Sep 2006 23:51:42 -0000 Mailing-List: contact user-help@struts.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Struts Users Mailing List" Reply-To: "Struts Users Mailing List" Delivered-To: mailing list user@struts.apache.org Received: (qmail 76705 invoked by uid 99); 21 Sep 2006 23:51:42 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Sep 2006 16:51:42 -0700 Authentication-Results: idunn.apache.osuosl.org header.from=thechrispratt@gmail.com; domainkeys=good Authentication-Results: idunn.apache.osuosl.org smtp.mail=thechrispratt@gmail.com; spf=pass X-ASF-Spam-Status: No, hits=2.5 required=5.0 tests=DNS_FROM_RFC_ABUSE,HTML_MESSAGE Received-SPF: pass (idunn.apache.osuosl.org: domain gmail.com designates 64.233.166.180 as permitted sender) DomainKey-Status: good X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 Received: from [64.233.166.180] ([64.233.166.180:13206] helo=py-out-1112.google.com) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id 7C/32-05580-C8523154 for ; Thu, 21 Sep 2006 16:51:41 -0700 Received: by py-out-1112.google.com with SMTP id d80so1074254pyd for ; Thu, 21 Sep 2006 16:51:37 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Bpdq+RcZhLTAv7f4KZtd32V5qQxwIriEyR1rO2+LklCNgL/M0067nP72SPTXvZLEoEWEajyt+CW9toIRFeprCXSaqEiqv/6rstgmBRmFEyg6hKYvzZUiKvTkL4nSOBaLBkN3U/ZEv036hKgrDGa+FB51N+CJHlCK9rc4D/I1VXw= Received: by 10.35.126.7 with SMTP id d7mr8525pyn; Thu, 21 Sep 2006 16:51:37 -0700 (PDT) Received: by 10.64.243.6 with HTTP; Thu, 21 Sep 2006 16:51:37 -0700 (PDT) Message-ID: <42db7f0a0609211651l29c5a32cma1aee4a24ca350e6@mail.gmail.com> Date: Thu, 21 Sep 2006 16:51:37 -0700 From: "Chris Pratt" To: "Struts Users Mailing List" Subject: Re: AJAX + Struts, IE Problem In-Reply-To: <82701c100609211625q83b6843y5b26ca79349f4be6@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_17904_10703101.1158882697252" References: <82701c100609210930y44dff3c9va912d97753f3cb75@mail.gmail.com> <82701c100609210937k6296e3b9mbc02b6277e80f02@mail.gmail.com> <35280.170.201.180.136.1158859031.squirrel@webmail.chiron.lunarpages.com> <82701c100609211027l33272484w564fd98acd023a8@mail.gmail.com> <82701c100609211322v2dc52ac3m5292ee0fb84a96f@mail.gmail.com> <45130BBC.6010906@omnytex.com> <82701c100609211606o1f9c7060yb5987554e811fb58@mail.gmail.com> <82701c100609211625q83b6843y5b26ca79349f4be6@mail.gmail.com> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_17904_10703101.1158882697252 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Why not do a post? It's not any harder. You just have to add one extra line and move the arguments from the URL to the send: ajax.open("POST","/GetCustomers.aspx",true); ajax.setRequestHeader ("Content-Type","application/x-www-form-urlencoded"); ajax.onreadystatechange =3D function() { // do stuff } }; ajax.send(country=3Direland); If you have more than one parameter to send, separate them with &'s just like the query string. (*Chris*) On 9/21/06, Daniel Chac=F3n S=E1nchez wrote: > > alredy do the url change, I'm reading this: > http://www.enja.org/david/?p=3D25 > > ?paso=3Dpaso1&campo=3Dnacionalidad', > 'PersonaForm')">Click Here > > function uncache(url,form){ > var d =3D new Date(); > var time =3D d.getTime(); > > url +=3D '&time=3D'+time; > > retrieveURL(url,form); > > } > > I will keep reading > > ------=_Part_17904_10703101.1158882697252--