市长热线演示版

knowledgeview.aspx 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="knowledgeview.aspx.cs"
  2. Inherits="HySoft.BaseCallCenter.Web.knowledgemanage.knowledgeview" %>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head runat="server">
  6. <title>知识库详细</title>
  7. <script src="../scripts/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
  8. <script src="../scripts/ui/js/ligerui.min.js" type="text/javascript"></script>
  9. <link href="../scripts/ui/skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" />
  10. <link href="../images/style.css" rel="stylesheet" type="text/css" />
  11. </head>
  12. <body class="mainbody" style="margin-top: 0px;">
  13. <form id="form1" runat="server">
  14. <div id="contentTab">
  15. <div class="tab_con" style="display: block;">
  16. <table class="form_table">
  17. <col width="100px" />
  18. <col />
  19. <tbody>
  20. <tr>
  21. <th>
  22. 标题:
  23. </th>
  24. <td>
  25. <b><asp:Label ID="lblTitle" runat="server" Text=""></asp:Label></b>
  26. </td>
  27. </tr>
  28. <tr>
  29. <th>
  30. 关键字:
  31. </th>
  32. <td>
  33. <asp:Label ID="lblKeyWords" runat="server" Text=""></asp:Label>
  34. </td>
  35. </tr>
  36. <tr>
  37. <th valign="top">
  38. 内容:
  39. </th>
  40. <td>
  41. <div style="width:100%" id="lblContent" runat="server">
  42. </div>
  43. </td>
  44. </tr>
  45. </tbody>
  46. </table>
  47. </div>
  48. </div>
  49. </form>
  50. </body>
  51. </html>