views:

20

answers:

1

I have created a web browser control and a form user control. How to align form user control is a center on web browser. Please look above of image.Thanks.

http://i200.photobucket.com/albums/aa41/xuanhung123/Untitled3.png

+1  A: 

You can put that in a div and mention styles for div as follows

<div class="divUserCtrl">
   <!-- put your control here-->
</div>

and in the CSS

.divUserCtrl
{
  margin:0 auto;
}
Shyju
In here, I'm using Web browser control and User Control. I'm not using HTML. Thank for your comment.