Hi,
According to your post, my understanding is that you want to indicate the position(Left or Right) of the two User Control.
We can use DIV + CSS to achieve it, the following code snippet for your reference:
<div id="banner">
<div id="bannerLeft">
User Control 1
</div>
<div id="bannerRight">
User Control 2
</div>
</div>
<style type="text/css">
#bannerLeft{
float:left;
}
#bannerRight{
float:right;
}
</style>
Best Regards
Dennis Guo
TechNet Community Support
