hi,
Thanks for posting your question here.
In design UI, you might not be able to set the selected tab. But in Page_Load() handler, you can just simply set the SelectedIndex to whatever page you want to display.
For example here, we set the second page as current page:
Code: C#
this.TabStrip1.SelectedIndex = 1;
Thanks.