Mega Code Archive

 
Categories / ASP.Net / Components
 

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>