Creating a Basic MultiPage Control (VB.net) : PageView MultiPage « Components « ASP.Net






Creating a Basic MultiPage Control (VB.net)

<%@ Page Language=VB Debug=true %>
<%@ Import Namespace="Microsoft.Web.UI.WebControls" %>
<%@ Register TagPrefix="IEControls" 
    Namespace="Microsoft.Web.UI.WebControls" 
    Assembly ="Microsoft.Web.UI.WebControls"
%>
<HTML>
<HEAD>
<TITLE>Creating a Basic MultiPage Control</TITLE>
</HEAD>
<BODY LEFTMARGIN="40">
<form runat="server">
<IEControls:multipage 
    id="MyMultiPage"
    runat="server"
    borderstyle=9
    borderwidth=3
    bordercolor="DarkBlue"
    width="90%"
    height="50%"
    >
</IEControls:multipage>
</form>
</BODY>
</HTML>
           
       








Related examples in the same category

1.IEControl: multipage test (C#)
2.IE Controls:multipage: use combobox to control page index (VB.net)
3.Adding a PageView Control to a MultiPage Control (VB.net)
4.Adding Controls to a PageView Control in Code (VB.net)