The name '__o' does not exist in the current context

后端 未结 5 2067
花落未央
花落未央 2020-12-13 03:24

I just installed Visual Studio 2015 and opened my asp .net project that I was working on. I\'m receiving many errors (all exactly the same) as below:

5条回答
  •  庸人自扰
    2020-12-13 04:01

    Declare variable __o in code, like this:

    public object __o;
    

    Be sure to put it in Master page (if you are using one).

提交回复
热议问题