| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="expandAddandEdit.aspx.cs"
- Inherits="HySoft.BaseCallCenter.Web.expendmanage.expandAddandEdit" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title></title>
- </head>
- <body class="mainbody" style="margin-top: 0px;">
- <form id="form1" runat="server">
- <div id="contentTab">
- <div class="tab_con" style="display: block;">
- <table class="form_table">
- <col width="100px" />
- <col />
- <tbody>
- <tr>
- <th>
- 扩展对象:
- </th>
- <td>
- <asp:TextBox ID="txtTableName" runat="server" CssClass="txtInput normal" MaxLength="255"></asp:TextBox>
- <label id="lblTableName" for="txtTableName">
- *</label>
- </td>
- </tr>
- <tr>
- <th>
- 扩展字段名:
- </th>
- <td>
- <asp:TextBox ID="txtShowName" runat="server" CssClass="txtInput normal" MaxLength="255"></asp:TextBox>
- <label id="lblShowName" for="txtShowName">
- *</label>
- </td>
- </tr>
- <tr>
- <th>
- 扩展代码:
- </th>
- <td>
- <asp:TextBox ID="txtFieldName" runat="server" CssClass="txtInput normal" MaxLength="255"></asp:TextBox>
- <label id="lblFieldName" for="txtFieldName">
- *</label>
- </td>
- </tr>
- <tr>
- <th>
- 扩展类型:
- </th>
- <td>
- <asp:TextBox ID="txtShowType" runat="server" CssClass="txtInput normal" MaxLength="255"></asp:TextBox>
- <label id="lblShowType" for="txtShowType">
- 描述</label>
- </td>
- </tr>
- <tr>
- <th>
- 字典值:
- </th>
- <td>
- <asp:TextBox ID="txtDictValue" runat="server" CssClass="txtInput normal" MaxLength="255"></asp:TextBox>
- <label id="lblDictValue" for="txtDictValue">
- *</label>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="foot_btn_box">
- <asp:Button ID="btnSubmit" runat="server" Text="保 存" CssClass="btnSubmit"
- OnClientClick="return validate();" OnClick="btnSubmit_Click" />
- </div>
- </div>
- </form>
- </body>
- </html>
|