zoukankan      html  css  js  c++  java
  • (转)C# TextBox ReadOnly / Enabled 时,后台无法取值问题

    当页面上的某个TextBox 设置了属性ReadOnly = "True" 或 Enabled = "False" 时,在客户端为其赋值后,在后台代码中却无法获得该值,可以通过如下的方式解决这个问题:


    1、不设置ReadOnly,设置onfocus=this.blur() 

    <asp:TextBox ID="TextBox1" runat="server" onfocus=this.blur()></asp:TextBox>  
    文本框不变灰色,但也无法手动修改内容,可以在后台通过Text属性正常赋值取值 


    2、设置了ReadOnly属性后,通过Request来取值,如下: 

    前台代码: 
    <asp:TextBox ID="TextBox1" runat="server" ReadOnly="True" ></asp:TextBox> 
     
    后台代码: 
    string Text = Request.Form["TextBox1"].Trim();  


    3、在Page_Load()正设置文本框的只读属性,能正常读取,如下: 

    protected void Page_Load(object sender, EventArgs e)   
    {   
        if (!Page.IsPostBack)   
         {   
             TextBox1.Attributes.Add("readonly","true");   
         }   
    }  

    转 https://blog.csdn.net/codeset/article/details/9883315

  • 相关阅读:
    BZOJ 1565 植物大战僵尸
    BZOJ 1497 最大获利(最大权闭合子图)
    BZOJ 1070 修车(最小费用流)
    BZOJ 2879 NOI2012美食节
    PHPCMS模板里面使用自定义函数
    邓_phpcms_数据库
    邓_ phpcms_
    dedecms====phpcms 区别==[工作]
    邓_html_图片轮播
    dedecms_插件
  • 原文地址:https://www.cnblogs.com/maja/p/10374462.html
Copyright © 2011-2022 走看看