pengjianhuan88 2013-09-26 01:10 采纳率: 0%
浏览 2317

jsp页面怎么控制所有控件只读

///
/// 设置当前页面上的所有可输入和选择的控件为只读属性
///
///
public static void SetControlReadOnly(Page page)
{

        foreach (Control ctrl in page.Controls)
        {
            SetControlReadOnly(ctrl);

        }
    }




    //递归调用。设置控件只读。
    public static void SetControlReadOnly(Control ctr)
    {
        if (ctr is TextBox)
        {
            TextBox txtControl = (TextBox)ctr;
            txtControl.ReadOnly = true;
            txtControl.Enabled = false;

        }
        else if (ctr is RadioButton)
        {
            RadioButton btn = (RadioButton)ctr;
            btn.Enabled = false;

        }
        else if (ctr is RadioButtonList)
        {
            RadioButtonList btn = (RadioButtonList)ctr;
            btn.Enabled = false;
        }

        else if (ctr is CheckBox)
        {
            CheckBox cb = (CheckBox)ctr;
            cb.Enabled = false;
        }
        else if (ctr is DropDownList)
        {
            DropDownList list = (DropDownList)ctr;
            list.Enabled = false;
        }

        else if (ctr is HtmlTextArea)
        {
            HtmlTextArea cb = (HtmlTextArea)ctr;
            cb.Attributes.Add("readonly", "");
            cb.Disabled = true;
        }
        else if (ctr is HtmlSelect)
        {
            HtmlSelect rb = (HtmlSelect)ctr;
            rb.Disabled = true;
        }

        else if (ctr is HtmlInputCheckBox)
        {
            HtmlInputCheckBox rb = (HtmlInputCheckBox)ctr;
            rb.Disabled = true;
        }
        else if (ctr is HtmlInputRadioButton)
        {
            HtmlInputRadioButton rb = (HtmlInputRadioButton)ctr;
            rb.Disabled = true;
        }
        else if (ctr is HtmlInputText)
        {
            HtmlInputControl input = (HtmlInputControl)ctr;
            input.Attributes.Add("readonly", "");
            input.Disabled = true;
        }
        else
            foreach (Control ctr1 in ctr.Controls)
            {
                SetControlReadOnly(ctr1);
            }
    }

上面的代码是说可以实现,但是我不知道怎么用,比如说我现在有一个叫test.jsp的页面,怎么传一个page参数过去呢?

  • 写回答

1条回答

  • 软件求生 2017-11-16 06:59
    关注

    你可以在每个jsp页面都引入一个js文件,在js文件中写一个初始化函数对所有的标签进行禁用。

    评论

报告相同问题?

悬赏问题

  • ¥30 Windows Server 2016利用兩張網卡處理兩個不同網絡
  • ¥15 Python中knn问题
  • ¥15 使用C#,asp.net读取Excel文件并保存到Oracle数据库
  • ¥15 C# datagridview 单元格显示进度及值
  • ¥15 thinkphp6配合social login单点登录问题
  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源