Quantcast
Channel: I cannot extract body data from POST body
Browsing all 8 articles
Browse latest View live

Re: I cannot extract body data from POST body

I managed to work around the problem:1) I send may body with javascript like var params = "OP=" + encodeURIComponent(input_old_password.value) + "&NP=" + encode....2) On my aspx receiving the POST,...

View Article



Re: I cannot extract body data from POST body

This is the comparison between a standard form submission (1st) and my custom submission (2nd)POST ..... HTTP/1.1 Host: ....com Connection: keep-alive Content-Length: 397 Cache-Control: max-age=0...

View Article

Re: I cannot extract body data from POST body

Hi Candice,My probem is that Request.Form["txtFormValue"] is always null.I successfully used an InputStream to read the entire body of the...

View Article

Re: I cannot extract body data from POST body

Hi Alex,You can retrieve data from a POST method:string formValue; if (!string.IsNullOrEmpty(Request.Form["txtFormValue"])) { formValue= Request.Form["txtFormValue"]; }If you want to retrieve content,...

View Article

I cannot extract body data from POST body

Hi all,I receive a POST on a page, this is part of the the request: POST http:....../Mypage.aspx HTTP/1.1 Connection: keep-alive Content-Length: 115 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64)...

View Article


Re: I cannot extract body data from POST body

I have the confirmation : it was a typoI'm glad no one lost its time trying to answer this un-existing problem. I hope the MSFT Visual Studio team hears my cry and they will help will more javascript...

View Article

Re: I cannot extract body data from POST body

I may have found the problem:Content-type: applixation/x-www-form-urlencodedappliXation ... it was a typo @@@#$#?!!! :((((((((((((((((

View Article

Re: I cannot extract body data from POST body

I discovered this javascript, FormData, to build the...

View Article

Browsing all 8 articles
Browse latest View live




Latest Images