将代码后面的值发送到隐藏字段

时间:2014-04-12 07:36:53

标签: c# asp.net

在下面的代码中,我有一个有价值的属性,我想将值发送到隐藏字段.pls帮助我这样做。

public string FieldLabel { get; set; }

 <asp:HiddenField ID="txthidd" runat="server" />

4 个答案:

答案 0 :(得分:0)

您只需将value设置为:

public string FieldLabel { 
     get{
        return txthidd.Value;
     } 

     set{
        txthidd.Value = value;
     }
}

答案 1 :(得分:0)

在页面加载的代码隐藏中:

txthidd.Value=FieldLabel ;

答案 2 :(得分:0)

在您的代码隐藏页面中: -

  

txthidd.Value =&#34;已分配值&#34 ;;

答案 3 :(得分:0)

试试这个:

Public string FieldLabel
{
    get { return txthidd.Value; }
    set { txthidd.Value = value; }
}

然后只需设置属性即可设置隐藏字段值

FieldLabel = "new value";