zoukankan      html  css  js  c++  java
  • asp:Wizard 应用

     <asp:Wizard ID="Wizard1" runat="server" HeaderText="Sample Wizard" >

                <WizardSteps>

                    <asp:WizardStep runat="server" Title="第一步" StepType="Start">

                        <asp:Label ID="Label1" runat="server" Text="用户名:"></asp:Label>

                        <asp:TextBox ID="tbName" runat="server"></asp:TextBox>

                        <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="tbName"

                            ErrorMessage="不能为空!"></asp:RequiredFieldValidator>

                        <br />

                        <asp:Label ID="Label2" runat="server" Text="密码:"></asp:Label>

                        <asp:TextBox ID="tbPwd" runat="server"></asp:TextBox>

                    </asp:WizardStep>

                    <asp:WizardStep runat="server" Title="第二步">

                        <asp:Label ID="Label3" runat="server" Text="Email"></asp:Label>

                        <asp:TextBox ID="tbEmail" runat="server"></asp:TextBox><br />

                        <asp:Label ID="Label4" runat="server" Text="Telephone"></asp:Label>

                        <asp:TextBox ID="tbPhone" runat="server"></asp:TextBox>

                    </asp:WizardStep>

                </WizardSteps>

            </asp:Wizard>

    <asp:wizard>包含<wizardSteps>,<wizardsteps>中只能有<asp:wizardStep>;其中的<asp:wizardstep>可有多个,也就是某个流程的步骤。

  • 相关阅读:
    css圆角与阴影,[iecss3.htc文件需要下载]
    [纯css下拉菜单]兼容各种IE,但搜狗好像有点问题
    UITabBar的隐藏与显示
    UIScrollView属性总结
    NSTimer 用法小结
    自定义UINavigationController的push和pop切换界面动画
    UIScrollView实现缩放和居中
    UITableView内存警告销毁视图后重新load视图,cell未显示内容
    Select的使用
    FreeType的使用
  • 原文地址:https://www.cnblogs.com/wenming205/p/1271134.html
Copyright © 2011-2022 走看看