用户控件中的Response.Write不会影响所有页面,只会影响用户控件

时间:2014-08-19 14:13:09

标签: c# asp.net user-controls

如何在用户控件中使用Response.Write来响应所有页面而不仅仅是用户控件本身?

function genericAjax(url, data) {
    $.ajax({
        type: "POST",
        url: url,
        data: data,
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (data) {
            if(data.d == "refresh")
            {
                location.reload();
            } 
        }
    });
}

pageLoad的

if(Request.Form["ajax"])
{
    //some code
    Response.Write("refresh");
}

0 个答案:

没有答案