我在表单上有 Img 标签,我想将它的 id 发送到aspx.cs
. 我使用了 post 方法并使用Request.Form["id"]
但我没有得到aspx.cs
文件上的 id 来检索这个 id。
代码:
$("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"));
});