The following button provides the exact functionality I require, but it must be done programmatically as I will be making more than one based on some variables, but the latter I can figure out if I can just create the button below as a starter:
<asp:Button runat="server" OnCommand="Load_Items" CommandArgument="1" text="Submit" />
More information on what I've been doing here.
Edit:
I have looked at questions like this, but don't see where to go from Button btnSave = new Button();
to seeing a button on the page. Also, most questions I've found seem to go about using C# to handle clicking, but I want to have an OnCommand property to handle it.
If I do the following and search using the developer tools for "btn", I get no results.
Button btnSave = new Button();
btnSave.ID = "btnSave";
btnSave.Text = "Save";
btnSave.CssClass = "btn";