javascript - How to get value js cookie from vb.net -
i have 1 js cookie:
document.cookie = "205_45_single_premium_=; 206_55_single_superior_=";
i want value cookie vb.net. try set value js cookie hidden field not success. receive value "undefined".
$("input[id$='_txttest']").val(document.cookie); console.log($("input[id$='_txttest']").val()); // receive "undefined"
how value js cookie vb.net ?
Comments
Post a Comment