次のようなフォームを投稿しているaspxページが1つあります
var form = document.createElement("form");
form.setAttribute("method", 'post');
form.setAttribute("action", '/my.ashx');
var field = document.createElement("input");
field.setAttribute("type", "hidden");
field.setAttribute("name", 'myVal');
field.setAttribute("value", "1234627373737377");
form.appendChild(field);
document.body.appendChild(form);
form.submit();
そして、 var myValue= context.Request["myVal"]; を使用して my.ashx ページの myVal にアクセスしようとしています。しかし、私はnull値を取得しています。