global_addmedal.aspx
上传用户:wenllgg125
上传日期:2020-04-09
资源大小:7277k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

Others

  1. <%@ Page language="c#" Inherits="Discuz.Web.Admin.addmedal" Codebehind="global_addmedal.aspx.cs" %>
  2. <%@ Register TagPrefix="cc1" Namespace="Discuz.Control" Assembly="Discuz.Control" %>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html>
  5. <head>
  6. <title>勋章添加</title>
  7. <link href="../styles/dntmanager.css" type="text/css" rel="stylesheet" /> 
  8. <script type="text/javascript" src="../js/common.js"></script>
  9. <meta http-equiv="X-UA-Compatible" content="IE=7" />
  10. </head>
  11. <body>
  12. <form id="Form1" method="post" runat="server">
  13. <div class="ManagerForm">
  14. <fieldset>
  15. <legend style="background:url(../images/icons/legendimg.jpg) no-repeat 6px 50%;">勋章添加</legend>
  16. <table width="100%">
  17. <tr><td class="item_title" colspan="2">名称</td></tr>
  18. <tr>
  19. <td class="vtop rowform">
  20. <cc1:TextBox id="name" runat="server" RequiredFieldType="暂无校验" CanBeNull="必填" Width="80%"></cc1:TextBox>
  21. </td>
  22. <td class="vtop"></td>
  23. </tr>
  24. <tr><td class="item_title" colspan="2">是否有效</td></tr>
  25. <tr>
  26. <td class="vtop rowform">
  27. <cc1:RadioButtonList id="available" runat="server">
  28. <asp:ListItem Value="1" Selected="True">有效</asp:ListItem>
  29. <asp:ListItem Value="0">无效</asp:ListItem>
  30. </cc1:RadioButtonList>
  31. </td>
  32. <td class="vtop"></td>
  33. </tr>
  34. <tr><td class="item_title" colspan="2">勋章图片上传</td></tr>
  35. <tr>
  36. <td class="vtop" colspan="2">
  37. <cc1:UpFile id="image" runat="server" UpFilePath="../../images/medals" FileType=".jpg|.gif|.png" ShowPostDiv="false"></cc1:UpFile>
  38. </td>
  39. </tr>
  40. </table>
  41. <div class="Navbutton"><cc1:Button id="AddMedalInfo" runat="server" Text=" 提 交 " OnClick="AddMedalInfo_Click"></cc1:Button></div>
  42. </fieldset>
  43. </div>
  44. </form>
  45. <%=footer%>
  46. </body>
  47. </html>