just want to post a single value to another form
var jqxhr = $.post("default2.aspx?id="+ peer.id, function () {
alert("success");
})
just wants to pass id parameter to default2.aspx
and in defautl2.aspx iam storing that id value in session
but session is empty
here is the code for default2.aspx
Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load
Session("amin") = Request.QueryString("id")
End Sub
where am i wrong
Go to the complete details ...