There is an aspx page (below part of the markup code)
<form id="form1" runat="server" form method="GET"> <div> <input type="file" name="f"/></p>; </div> Is it possible to make it so that if you get a GET request, the file selected in the input goes to the REQUEST BODY request? Ps Ie that the file would go in GET to request similarly to POST to request. Pss know that having a body GET request is a violation of the HTTP 1.1 specification.