Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
5answers
2k views

How can I inspect form data being Posted?

I am reverse engeneering an app and I need to see what is in the post data without viewing the form source, is a there a decent app/plugin to see what is being posted? Any Browser on Windows I'm ...
1
vote
1answer
31 views

sending action=updatenow to server through cronjob?

I am a member of a site, where stats from a game is collected every time I visit the site, when I press the update button.. I would like this to happen once a day automatically, and I've been told ...
1
vote
1answer
1k views

Adding HTTP Headers and Post data in a System.Windows.Forms.WebBrowser

I'm trying to use the System.Windows.Forms.WebBrowser to make a request that both sends POST data and custom HTTP headers. I'd like to set the user-agent of the request as well. How could I do this? ...
1
vote
2answers
319 views

Lynx removes newline characters from post_data input

I am trying to post a file to a URL via the MS-DOS command prompt. I am using the Lynx browser to do this. I am able to post my file just fine, but all of the newline characters are removed by Lynx ...
1
vote
6answers
2k views

How to dump the whole POST data to a file in ASP.NET

I'm currently trying to port an app from asp.net to php, however I just hit a wall and need a hand with this. I need to dump all the data an .aspx recieves via POST to a file, but I have no clue on ...
0
votes
2answers
492 views

Prevent duplicate record insertion on refresh without redirecting

I have this bit of script: if (isset($_POST['comment_posted'])) { $user_comment = mysql_real_escape_string($_POST['user_comment']); $add_user_comment = ...
0
votes
1answer
289 views

ASP.Net using multiple form tag and post them to another page

I don't know it's even possible but I try to achieve to post data from one page to another using the second form. The problem is I need a form tag for the user interface containing callback panels ...