asp.net - IE Browser truncating request -


i tried sending ajax request 20 kb of data.. using internet explorer ajax post call, found ajax call sending 20 kb of data correctly, same data not coming in asp code, when try data using request.form("itemids").

var strurl="/logix/folder-feeds.aspx?action=transferoffers";           $.ajax({           type:"post",           url: strurl,           data : {           content : 'application/json',           sfolder: sourcefolder,           dfolder : destinationfolder,           fromofferlist : false,           itemids : json.stringify(selecteditems),           actionitem : actionele.value           },           //traditional:true,           success: function (data) {           updatepage(data.trim())  }}); 

i able 20 kb of data when did ajax post using mozilla firefox.

i believe ie chopping request. there setting, need fix this?


Comments

Popular posts from this blog

qml - Is it possible to implement SystemTrayIcon functionality in Qt Quick application -

double exclamation marks in haskell -

javascript - How to get D3 Tree link text to transition smoothly? -