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
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
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;
}