如题所示

解决方案 »

  1.   

    客户端的button是指
    <input type="button">?
    <input type="button"  <%this.EnabledBtn?"":"disabled"%> >后台声明一个变量      protected bool EnabledBtn;通过更改这个变量的值来控制.
      

  2.   

    没错没错,我想的客户端的button就是<input type="button">,意思我明白了<input type="button"  <%this.EnabledBtn?"":"disabled"%> >有点晕,呵呵
      

  3.   

    html里面,这个三元的判断应该如何写?
      

  4.   

    <input type="button"  <%=this.EnabledBtn?"":"disabled"%> >少了个=号.