| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="knowledgeview.aspx.cs"
- Inherits="HySoft.BaseCallCenter.Web.knowledgemanage.knowledgeview" %>
- <!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>
- <script src="../scripts/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
- <script src="../scripts/ui/js/ligerui.min.js" type="text/javascript"></script>
- <link href="../scripts/ui/skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" />
- <link href="../images/style.css" rel="stylesheet" type="text/css" />
- </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>
- <b><asp:Label ID="lblTitle" runat="server" Text=""></asp:Label></b>
- </td>
- </tr>
- <tr>
- <th>
- 关键字:
- </th>
- <td>
- <asp:Label ID="lblKeyWords" runat="server" Text=""></asp:Label>
- </td>
- </tr>
- <tr>
- <th valign="top">
- 内容:
- </th>
- <td>
- <div style="width:100%" id="lblContent" runat="server">
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </form>
- </body>
- </html>
|