form-parameter

curl --form file redirection

Hello, This works: curl --url http://someurl.tld --form "apikey=39485730" This does not: curl --url http://someurl.tld --form "apikey=<keyfile" Error: Invalid API keys The cURL manual (http://curl.haxx.se/docs/manpage.html) explicitly states -F/--form (HTTP) This lets curl emulate a filled-in form in which a user has ...

sending parameter to another action as querystring not form parameter

hi, i have a form that have a field which hold query for search and a button to send query value to another action method to perform search. now i want to send this parameter as querystring; not form parameter. but when i click on submit button it's value isn't shown on address bar and sended as form parameter. <% using (Html.BeginForm(...