在下面的代码中,我有一个有价值的属性,我想将值发送到隐藏字段.pls帮助我这样做。
public string FieldLabel { get; set; }
<asp:HiddenField ID="txthidd" runat="server" />
答案 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";