Adding a PageView Control to a MultiPage Control (VB.net) : PageView MultiPage « Components « ASP.Net






Adding a PageView Control to a 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>Adding a PageView Control to a 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:PageView
        id="pv1"
        runat=server
        font-name="Arial"
        font-bold=True
        forecolor="yellow"
        backcolor="darkred"
    >
        Enter your name:<BR>
        <asp:textbox 
        id="txtName" 
        runat=server 
        />    
        <BR>
        Enter your password:<BR>
        <asp:textbox 
        id="txtPassword" 
        runat=server 
        />    
        <BR>
    </IEControls:PageView>    
</IEControls:multipage>
</form>
</BODY>
</HTML>
           
       








Related examples in the same category

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