如何在.aspx页面中获取ac#variable(string)值

Jac*_*son 0 c# asp.net scriptlet

所以用这个代码.

public partial class SiteMaster : System.Web.UI.MasterPage
    {

        public string feedbackPostback = "false";

        protected void Page_Load(object sender, EventArgs e)
        {

        }
    }
}
Run Code Online (Sandbox Code Playgroud)

我如何访问feebackPostback:

<script type="text/javascript">
    $(function () {
        $('.slide-out-div').tabSlideOut({
            tabHandle: '.handle',                     //class of the element that will become your tab
            pathToTabImage: 'images/feedback.gif',    //path to the image for the tab //Optionally can be set using css
            imageHeight: '122px',                     //height of tab image           //Optionally can be set using css
            imageWidth: '40px',                       //width of tab image            //Optionally can be set using css
            tabLocation: 'right',                     //side of screen where tab lives, top, right, bottom, or left
            speed: 300,                               //speed of animation
            action: 'click',                          //options: 'click' or 'hover', action to trigger animation
            topPos: '150px',                          //position from the top/ use if tabLocation is left or right
            leftPos: '20px',                          //position from left/ use if tabLocation is bottom or top
            fixedPosition: false,                      //options: true makes it stick(fixed position) on scroll
            onLoadSlideOut: <%= this.feebackPostback %>
        });

    });
</script>
Run Code Online (Sandbox Code Playgroud)

目前尝试<%= this.feebackPostback %>并返回此错误:CS1061:'ASP.site_master'不包含'feebackPostback'的定义,并且没有扩展方法'feebackPostback'接受类型'ASP.site_master'的第一个参数可以找到(你是否错过了使用指令或程序集引用?)

Mar*_*ade 5

你拼错了feedbackPostback- 你忘记了d.