在下面的代码中,我有一个文本框,它保持可见 false ,其默认值为 0 。当我第一次单击该按钮时,它取0值,下次取空。下次不会获取0值。请帮我这样做。
<asp:UpdateProgress ID="UpdateProgress2" AssociatedUpdatePanelID="productPanel" runat="server">
<ProgressTemplate>
Details are loading... Please wait
</ProgressTemplate>
</asp:UpdateProgress>
<asp:UpdatePanel ID="productPanel" runat="server">
<ContentTemplate>
<asp:TextBox ID="txtUnusableLoss" Text="0" runat="server" visible="false" style="width:70%" onkeypress="return isNumberKey(event, false);" >
</asp:TextBox>
</ContentTemplate>
</asp:UpdatePanel>
protected void btnSubmit_Click(object sender, EventArgs e)
{
string val= txtUnusableLoss.Text.ToString();
}