Ok, so right below the button, add this:
<asp:Label ID="Label1" runat="server" Text="Enter a number"
style="margin-left:12px" Font-Size="Medium">
</asp:Label>
<asp:TextBox ID="txtNumber" runat="server"
Text="0"
style="margin-left:10px" Font-Size="Medium"
TextMode="Number">
</asp:TextBox>
Note how we used "margin-left to space things over as much as we like.
And I did use text mode = number. This will prevent the user from enter of non numbers
The result is thus now this:
so, you can just drag + drop in the label, then the text box.
The "bonus" part is how we space out things to the right.
(using that simple trick of margin-left is nice, since then we don't have to add a bunch of extra messy markup or even perhapas a "table". A simple drop control, move over a bit with margin-left makes this easy. And do the same trick for the text box if you want to space it over a bit more (or less).
Regards,
Albert D. Kallal (Access MVP 2003-2017)
Edmonton, Alberta, Canada