v9.7.2018.0421   支持运行时修改DAL连接字符串
大石头 编写于 2018-04-21 14:00:47
X
<%@ Page Title="<#=Table.DisplayName#>管理" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="<#=Table.Name#>Form.aspx.cs" Inherits="<#=Config.EntityConnName+"_"+Table.Name#>Form"%>

<asp:Content ID="Content1" runat="server" ContentPlaceHolderID="C">
    <div class="row-filuid">
    <div class="widget-box">
    <div class="widget-content nopadding">
        <table class="table table-bordered table-striped">
            <tr>
                <th colspan="2"><#=Table.DisplayName#></th>
            </tr>
            <# 
            foreach(IDataColumn Field in Table.Columns) { 
                String pname = Field.Name;
                if(Field.PrimaryKey) continue;
                String frmName = "frm" + pname;
                TypeCode code = Type.GetTypeCode(Field.DataType);
            #><tr>
                <td align="right"><#=Field.DisplayName#>:</td>
                <td><#
                    if(code == TypeCode.String){
                        if(pname.Equals("Password", StringComparison.OrdinalIgnoreCase) || pname.Equals("Pass", StringComparison.OrdinalIgnoreCase)){
                    #><asp:TextBox ID="<#=frmName#>" runat="server" TextMode="Password"></asp:TextBox><#
                        }else if(Field.Length>300 || Field.Length<0){
                    #><asp:TextBox ID="<#=frmName#>" runat="server" TextMode="MultiLine" Width="300px" Height="80px"></asp:TextBox><#
                        }else{
                    #><asp:TextBox ID="<#=frmName#>" runat="server" Width="<#=Field.Length+100#>px"></asp:TextBox><#
                        }
                    }else if(code == TypeCode.Int32){
                    #><XCL:NumberBox ID="<#=frmName#>" runat="server" Width="80px"></XCL:NumberBox><#
                    }else if(code == TypeCode.Double){
                    #><XCL:RealBox ID="<#=frmName#>" runat="server" Width="80px"></XCL:RealBox><#
                    }else if(code == TypeCode.DateTime){
                    #><XCL:DateTimePicker ID="<#=frmName#>" runat="server"></XCL:DateTimePicker><#
                    }else if(code == TypeCode.Decimal){
                    #><XCL:DecimalBox ID="<#=frmName#>" runat="server" Width="80px"></XCL:DecimalBox><#
                    }else if(code == TypeCode.Boolean){
                    #><asp:CheckBox ID="<#=frmName#>" runat="server" Text="<#=Field.DisplayName#>" /><#}
                #></td>
            </tr>
    <#}#>    </table>
    </div>
    </div>
    </div>
    <div class="row-filuid">
                <asp:Button ID="btnSave" runat="server" CausesValidation="True" Text='保存' />
                &nbsp;<asp:Button ID="btnCopy" runat="server" CausesValidation="True" Text='另存为新<#=Table.DisplayName#>' />
                &nbsp;<asp:Button ID="btnReturn" runat="server" OnClientClick="parent.Dialog.CloseSelfDialog(frameElement);return false;" Text="返回" />
       </div>
</asp:Content>