Hi,
I have this code fragment:
I would like to add a label & textbox right to the existing button. The textBox needs to have a default value of 0 but can be amended by user.
How to achieve this ?
Thank you
I have this code fragment:
ASP.net:
ASP.NETCopy
<div class="DetailsBoxContent">
<asp:UpdatePanel runat="server" ID="Run Report" UpdateMode="Conditional">
<ContentTemplate>
<asp:Panel ID="pnlGenerateRpt" runat="server">
<div style="padding: 10px; text-align: center; width: 100%; float: right;">
<asp:Button ID="btnGenerateRpt" runat="server" CssClass="StdButton" Text="Generate Report" OnClick="btnGenerateRpt_Click" />
</div>
</asp:Panel>
</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="btnGenerateRpt" />
</Triggers>
</asp:UpdatePanel>
</div>
I would like to add a label & textbox right to the existing button. The textBox needs to have a default value of 0 but can be amended by user.
How to achieve this ?
Thank you