フォームに Img タグがあり、この ID を に送信したいと考えていますaspx.cs
。post メソッドを使用してこの ID を取得しましたが、ファイルRequest.Form["id"]
に ID を取得していませんaspx.cs
。
コード:
$("img").click(function () {
var id = $(this).attr("id");// Here I am getting id How can i send this id to aspx.cs
jq.post("WebForm1.aspx",
id: $(this).attr("id"));
});