Re: submit ajax problem for characters like +
Posted By:
Anonymous
Posted On:
Tuesday, March 27, 2007 12:43 AM
forgot one more use this
youtStringValue = yourStringValue.replace(/+/g,"%2B");
youtStringValue = yourStringValue.replace(/=/g,"%3D");
youtStringValue = yourStringValue.replace(/?/g,"%3F");
youtStringValue = yourStringValue.replace(///g,"%2F");
now you send the string.
Re: submit ajax problem for characters like +
Posted By:
Anonymous
Posted On:
Tuesday, March 27, 2007 12:40 AM
before sending your string from html form in the javascript use
yourStringValue = escape(yourStringValue);
now send your string using ajax.