OK if you just want to whack buttons on the page, then you can use
Code:
Page.Form.Controls.Add(objButton)
Just using Page.Controls will add it after the form and hence be outside of it.
I would have thought you would want to lay them out more nicely tho, for example putting them next to the song names or something. You might want to look into using one of the built-in binding controls such as a GridView or DataList
HTH
Phil