Thanks for your response. I really appreciate another ASP.NET developers insight.
I am using design view to initially add web form server side controls to a web form. The HTML view does not give me this option.
My mistake was attempting to insert a web form server side RadioButton control inside a web form server side Table control. In design mode it would not allow me to insert one server side control inside another server side control so I went to HTML view and moved the RadioControl tag between the server side TableCell tags. It appeared to work until I removed the absolute coordinates of the RadioButtons and then the control threw an error. Once I used a standard HTML table I could insert server side RadioButton controls into the HTML table cells using relative positioning and the server side RadioButtons now move relative to the position of the table. It was stupid to choose a server side table control when it was not needed, just part of jumping into this new environment.
The RadioButtonList control is a nice option but I needed a single group of radio buttons that spanned two physically separate tables. I needed the server side control because the radio buttons are generating SQL database updates.
I have nothing but HTML in my aspx file. I'm using the code behind aspx.cs file for all script. I want to use the ascx user control approach but was waiting until I had code that warrented reuse. If my HTML and C# code are separated with the aspx and aspx.cs pages and the code is not going to be reused, do you see an advantage of creating a user control with this code?
And when we get there I think it will be better than ever. :>)
Thanks again, Kyle