Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
using Microsoft.Web.UI.WebControls;
// add new tab
Tab newTab = new Tab();
newTab.Text = "New Tab";
TabStrip1.Items.Add(newTab);
// add new PageView to use by the new tab
PageView newPageView = new PageView();
newPageView.Controls.Add(new LiteralControl("New Page View"));
MultiPage1.Controls.Add(newPageView);
// to remove tab and pageview;
TabStrip1.Items.RemoveAt(0);
MultiPage1.Controls.RemoveAt(0);