protected void AppendPageAttributes
        (
            RBAC_UserRightsInspector userRightsAtContainer,
            RevisionAttributes attributes,
            ref Control collapseTable
        )
        {
            HtmlTable table = new HtmlTable();
            table.CellPadding = 0;
            table.CellSpacing = 0;
            ...
            ...
         }

解决方案 »

  1.   

    看起来还是C#啊,是asp编程里的网页控件吧
      

  2.   

    这是一个函数,没有什么特别的.只有ref关键字
    protected void AppendPageAttributes(RBAC_UserRightsInspectoruserRightsAtContainer,RevisionAttributes attributes,ref Control collapseTable)
            {
               HtmlTable table = new HtmlTable();
               table.CellPadding = 0;
               table.CellSpacing = 0;
            }
      

  3.   

    这个方法意思是追加页面脚本。
    代码是生成Table,然后设置属性!