⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 confirmation.ascx

📁 《圣殿祭司的ASP.NET 2.0开发详解——使用C#》光盘内容.包含了书籍所含的源代码.非常经典的一本asp.net2.0的书籍
💻 ASCX
字号:
<%@ Control %>
<%@ Import Namespace="System.Web.Administration" %>
<%@ Import Namespace="System.Web.Configuration" %>
<%@ Import Namespace="System.Globalization" %>

<script runat="server" language="cs">
public Literal DialogContent {
    get {
        return dialogContent;
    }
}

public Literal DialogTitle {
    get {
        return dialogTitle;
    }
}

public Button LeftButton {
    get {
        return leftButton;
    }
}

public Button RightButton {
    get {
        return rightButton;
    }
}
</script>


<table height="100%" width="100%">
            <tr height="70%">
                <td width="60%">
                    <table cellspacing="0" height="100%" width="100%" cellpadding="4" rules="none"
                           bordercolor="#CCDDEF" border="1" style="border-color:#CCDDEF;border-style:None;border-collapse:collapse;">
                        <tr class="callOutStyle">
                            <td style="padding-left:10;padding-right:10;" colspan="3">
                                <asp:literal runat="server" id="dialogTitle"/>
                            </td>
                        </tr>
                        <tr class="bodyText" height="100%" valign="top">
                            <td style="padding-left:10;padding-right:10;" colspan="3">
                                <asp:literal runat="server" id="dialogContent"/>
                            </td>
                        </tr>
                        <tr class="userDetailsWithFontSize" valign="top" height="5%">
                            <td style="padding-left:10;padding-right:10;" align="left"><%-- place holder for a link. --%></td>
                            <td style="padding-left:10;padding-right:10;" align="right"><asp:button runat="server" id="leftButton" forecolor="black" text="<%$ Resources:OkButton %>" width="75"/></td>
                            <td style="padding-left:10;padding-right:10;" align="right" width="1%">
                                <asp:button runat="server" id="rightButton" forecolor="black" text="<%$ Resources:CancelButton %>" width="75"/>
                            </td>
                        </tr>
                    </table>
                </td>
                <td/>
            </tr>
            <tr><td colspan="2"/></tr>            
</table>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -