• aspx网页相对布局


    网页的布局

    <body bgcolor="#b6b7bc">
        <form id="form1" runat="server">
        <div style="height: 600px; background: url(Image/login.jpg) no-repeat center center;">
            <div style=" 50%; position: relative; left: 30%; top: 55%; right: 50%; bottom: 50%;">
                <asp:Label ID="m_DevedCodeLabel" runat="server" Text="设备码:"></asp:Label>
                <asp:TextBox ID="m_DevedCodeTextBox" runat="server" ReadOnly="True" Width="320px"></asp:TextBox>
                <br />
                <br />
                <asp:Label ID="m_MessageLabel" runat="server" ForeColor="Red" Visible="False"></asp:Label>
                <br />
                <asp:Button ID="m_OKButton" runat="server" Text="提交注册申请" />
            </div>
        </div>
        </form>
    </body>


     异步调用:

     <asp:ScriptManager ID="ScriptManager1" runat="server">
                </asp:ScriptManager>
                <asp:UpdatePanel ID="UpdatePanel1" runat="server">
                    <ContentTemplate>
                        <asp:Label ID="m_MessageLabel" runat="server" ForeColor="Red" Visible="False"></asp:Label>
                        <br />
                        <asp:Button ID="m_OKButton" runat="server" Text="提交注册申请" OnClick="m_OKButton_Click" />
                    </ContentTemplate>
                </asp:UpdatePanel>
  • 相关阅读:
    python 操作mysql
    python多线程
    python socket 网络编程
    nginx源码编译安装
    CentOS网卡配置文件
    使用本地yum源
    ping github 请求超时
    ping github 请求超时
    设计模式-装饰器模式
    设计模式-装饰器模式
  • 原文地址:https://www.cnblogs.com/sshoub/p/3261126.html
Copyright © 2020-2023  润新知