Hi,
i use asp.net and C# to build a web application.
i'm trying to pass two variables from client to server using jquery as follows:
function moveToMessage(recId, isSent) {
__doPostBack('DivClicked', JSON.stringify({recId: recId, isSentClicked:isSent}));
}
My question is how i can receive (appropriately) these variables on server side into strings?
if i watch "Request.Params[1]" i can see the values as expected.
recId = 3
IsSentClicked = true
Request.Params[1] = "{\"recId\":3,\"isSentClicked\":true}" string
Thanks a lot.