我已经使用了这个信息,但它无效
How to Create Session Variable in JavaScript MVC3 Razor View engine .cshtml
有什么想法吗?
这是我的SetVariable ActionResult:
Public Function SetVariable(key As String, value As String) As ActionResult
Session(key) = value
Return Me.Json(New With { _
Key .success = True _
})
End Function
这是调用前一个函数的JS函数
function Comprobacion2(s, e) {
$(function () {
$.post('/Home/SetVariable',
{ key: "cadena", value: "Nueva" }, function (data) {
alert("Exito, cambio realizado " + '@Session("cadena")');
});
});
}

答案 0 :(得分:0)
我使用其他功能解决了我的问题:
function Comprobacion3(s, e) {
$(function () {
$.get('/Home/GetVariable',
{ key: "cadena" }, function (data) {
alert(data);
});
});
}