clubAdEdit.jsp
上传用户:u_thks
上传日期:2022-07-31
资源大小:1910k
文件大小:4k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

Java

  1. <%@ page language="java" contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="../GVinc/gvInclude.jsp" %>
  3. <%@ include file="clubMasterPass.jsp" %>
  4. <jsp:useBean id="ca" scope="page" class="com.gamvan.club.manage.ClubAd" />
  5. <% 
  6. //权限判断共享代码
  7. boolean ispass = false;
  8. //ArrayEdit ae = new ArrayEdit();
  9. ispass = ae.txtsArray(gvcmgTxt,6,"|");
  10. if(!ispass){
  11. out.print(OutPrint.prtCenter("您无权进行此项操作!","",2));
  12. out.close();
  13. }
  14. //权限判断代码结束
  15. int adID = 0;
  16. adID = TypeChange.stringToInt(request.getParameter("adID"));
  17. short type = 0;
  18. type = TypeChange.stringToShort(request.getParameter("type"));
  19. short adWidth = 10;
  20. short adHeight = 10;
  21. short adType = 0;
  22. String adTxt = "";
  23. String adObj = "";
  24. String adUrl = "";
  25. String message = "";
  26. String act = null;
  27. if(request.getParameter("act")!=null){
  28. act = request.getParameter("act");
  29. }else{
  30. act = "add";
  31. }
  32. if(request.getMethod().equals("POST")){
  33. adTxt = request.getParameter("adTxt");
  34. adObj = request.getParameter("adObj");
  35. adUrl = request.getParameter("adUrl");
  36. adWidth = TypeChange.stringToShort(request.getParameter("adWidth"));
  37. adHeight = TypeChange.stringToShort(request.getParameter("adHeight"));
  38. adType = TypeChange.stringToShort(request.getParameter("adType"));
  39. ca.setAdTxt(adTxt);
  40. ca.setAdObj(adObj);
  41. ca.setAdUrl(adUrl);
  42. ca.setAdWidth(adWidth);
  43. ca.setAdHeight(adHeight);
  44. ca.setAdType(adType);
  45. ca.setAct(act);
  46. ca.setAdID(adID);
  47. ca.doAd();
  48. out.print(OutPrint.prtCenter(ca.getMessage(),"./clubAd.jsp?type="+request.getParameter("adType")+"",1));
  49. out.close();
  50. if(true)return;
  51. }
  52. ClubAdItem cai = null;
  53. if(adID>0){
  54. ca.setAdID(adID);
  55. cai = (ClubAdItem)ca.adInfo();
  56. adObj = cai.getAdObj();
  57. adUrl = cai.getAdUrl();
  58. adTxt = cai.getAdTxt();
  59. adWidth = cai.getAdWidth();
  60. adHeight = cai.getAdHeight();
  61. adType = cai.getAdType();
  62. }
  63. %>
  64. <html>
  65. <head>
  66. <title>社区广告管理</title>
  67. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  68. <link href="css.css" rel="stylesheet" type="text/css">
  69. </head>
  70. <body>
  71. <table width="99%"  border="0" align="center" cellpadding="4" cellspacing="1" bgcolor="#CCCCCC">
  72.   <tr>
  73.     <td align="center"><strong>社区随机广告管理</strong></td>
  74.   </tr>
  75. </table>
  76. <table width="99%" border="0" align="center" cellpadding="4" cellspacing="1" bgcolor="#DDDDDD">
  77. <form name="Gforms" method="post" action="clubAdEdit.jsp?adID=<%=adID%>&act=<%=act%>&type=<%=type%>">
  78. <tr>
  79.     <td width="100" bgcolor="#f6f6f6"><strong>广告显示内容</strong></td>
  80.   <td width="620" bgcolor="#f6f6f6">
  81.     <input name="adObj" type="text" id="adObj" value="<%=adObj%>" size="50">
  82. </td>
  83.   </tr>
  84.   <tr>
  85.     <td bgcolor="#f6f6f6"><strong>广告Url地址</strong></td>
  86.   <td bgcolor="#f6f6f6"><input name="adUrl" type="text" id="adUrl" value="<%=adUrl%>" size="50"></td>
  87.   </tr>
  88.   <tr>
  89.     <td bgcolor="#f6f6f6"><strong>广告条宽度</strong></td>
  90.   <td bgcolor="#f6f6f6"><input name="adWidth" type="text" id="adWidth" value="<%=adWidth%>" size="5" maxlength="5"></td>
  91.   </tr>
  92.   <tr>
  93.     <td bgcolor="#f6f6f6"><strong>广告条高度</strong></td>
  94.     <td bgcolor="#f6f6f6"><input name="adHeight" type="text" id="adHeight" value="<%=adHeight%>" size="5" maxlength="5"></td>
  95.   </tr>
  96.   <tr>
  97.     <td bgcolor="#f6f6f6"><strong>广告条显示在</strong></td>
  98.     <td bgcolor="#f6f6f6"><select name="adType" id="adType">
  99.       <option <%if(adType==1){out.print("selected");}%> value="1">首页</option>
  100.   <option <%if(adType==2){out.print("selected");}%> value="1">内容页</option>
  101.     </select></td>
  102.   </tr>
  103.   <tr>
  104.     <td bgcolor="#f6f6f6"><strong>备注</strong></td>
  105.     <td bgcolor="#f6f6f6"><input name="adTxt" type="text" id="adTxt" value="<%=adTxt%>" size="50" maxlength="200"></td>
  106.   </tr>
  107.   <tr>
  108.     <td bgcolor="#f6f6f6">&nbsp;</td>
  109.     <td bgcolor="#f6f6f6"><input name="gvSubmit" type="submit" id="gvSubmit" value="提交"></td>
  110.   </tr>
  111.   </form>
  112. </table>
  113. </body>
  114. </html>