• .NET ------ 禁止


    一、禁止用户输入数据,两种方式:前台 和后台借助  ReadOnly 方法

    1、在 aspx 界面 使用   ReadOnly="true"

      <td width="20" align="right" bgcolor="#F5F5F5">订单编号:</td>
    <td  style="white-space: nowrap" align="left" bgcolor="#FFFFFF" width="30%">
    <asp:TextBox MaxLength="24"  ID="tbSaleMark" runat="server" ReadOnly="true"></asp:TextBox>
    </td>

    2、在aspx.cs 界面使用     this.tbSaleMark.ReadOnly = true;

      this.tbSaleMark.ReadOnly = true;

    二、 禁止触发事件

    如:.net 中的服务端控件  LinkButton,借助 Enabled="false" 进行关闭

    <asp:LinkButton Visible='<%# DataBinder.Eval(Container.DataItem, "StockGoodsDanGuid").ToString() =="" %>' ID="btnSubmit" runat="server" CommandArgument='<%# DataBinder.Eval(Container.DataItem,"ClassJiHuaTitleListGuid") %>'  OnClick="btnSubmit_Click"><span class="badge badge-danger">提交出库单</span></asp:LinkButton>
    <asp:LinkButton Visible='<%# DataBinder.Eval(Container.DataItem, "StockGoodsDanGuid").ToString() !="" %>' ID="btnSubmitNot" runat="server" Enabled="false"><span class="badge" title="已提交出库单">提交出库单</span></asp:LinkButton>
                      

    展示如下:

  • 相关阅读:
    cent os 6.8 php 5.6 安装ffmpeg扩展
    Linux查找目录下文件包含关键字
    python生成随机验证码
    zabbix添加任务计划和sshd文件修改key
    OS模块
    python模块
    python内建函数
    python3 爬煎蛋ooxx妹子图
    ssm整合-Sping整合Mybatis框架配置事务07
    ssm整合-Sping整合Mybatis框架06
  • 原文地址:https://www.cnblogs.com/obge/p/14177238.html
Copyright © 2020-2023  润新知