Transferring a key value pair object to the server side codebehind.
What is the method to send it from JavaScript?
And how can it be received in C# codebehind?
Modification 1
<script type="text/javascript">
function ABC()
{
var dictionary = [];
dictionary.push({ key: "testkey" ,// Key Value
value: "myVal" // "the value" });
...