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 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序
  • ¥15 onvif+openssl,vs2022编译openssl64
  • ¥15 iOS 自定义输入法-第三方输入法
  • ¥15 很想要一个很好的答案或提示