如何在JavaScript MVC4 Razor View引擎.vbhtml中修改会话变量

时间:2015-11-06 13:05:26

标签: javascript vb.net asp.net-mvc-4 session razor

我已经使用了这个信息,但它无效

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")');
                   });
        });

    }




1 个答案:

答案 0 :(得分:0)

我使用其他功能解决了我的问题:

function Comprobacion3(s, e) {
        $(function () {
            $.get('/Home/GetVariable',
                   { key: "cadena" }, function (data) {
                       alert(data);
                   });
        });
    }