I’m trying to send some data in an Ajax call to update a record in the server
var OrderNotes = $.ajax({
url:'AjaxActions/OrderNotesUpdate.aspx?OrderID=' + OrderID + '&Notes=' + $('#txtNotes').val(),
async:false
}).responseText;
“Notes” are in unicode.
When i’m checking the querystring on the receiving page i’m getting not getting the same code (not the text i’v enterd).
Any one knows any thing about it? is it becouse the data is from an asp.net textbox?
what can i do about it?
p.s before sending i checked and every things is as it should, just in the querystring every thing going wrong…
10x
1 Answer