addmyface.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ page import = "java.net.URLEncoder"%>
  3. <%@ page import = "cn.js.fan.web.*"%>
  4. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  5. <html>
  6. <head>
  7. <title>Modify my icon</title>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  9. <link rel="stylesheet" href="common.css" type="text/css">
  10. <script language="JavaScript" type="text/JavaScript">
  11. // Example: obj = findObj("image1");
  12. function findObj(theObj, theDoc)
  13. {
  14.   var p, i, foundObj;
  15.   
  16.   if(!theDoc) theDoc = document;
  17.   if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
  18.   {
  19.     theDoc = parent.frames[theObj.substring(p+1)].document;
  20.     theObj = theObj.substring(0,p);
  21.   }
  22.   if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
  23.   for (i=0; !foundObj && i < theDoc.forms.length; i++) 
  24.     foundObj = theDoc.forms[i][theObj];
  25.   for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++) 
  26.     foundObj = findObj(theObj,theDoc.layers[i].document);
  27.   if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
  28.   
  29.   return foundObj;
  30. }
  31. </script>
  32. </head>
  33. <body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
  34. <%@ include file="inc/inc.jsp"%>
  35. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
  36. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  37. <%
  38. // 安全验证
  39. if (!privilege.isUserLogin(request))
  40. {
  41. out.print(StrUtil.p_center(SkinUtil.LoadString(request, SkinUtil.ERR_NOT_LOGIN)));
  42. return;
  43. }
  44. %>
  45. <table width="100%" height="73" align="center" class="p9">
  46.   <form name="form2" enctype="MULTIPART/FORM-DATA" action="addmyface_do.jsp" method="post">
  47.     <tr> 
  48.       <td height="46"><lt:Label res="res.label.forum.user" key="user_sel_icon"/> 
  49.         <input name=filename type=file id="filename"> <input type=submit value=<lt:Label key="ok"/>> 
  50.         <br>
  51.         <lt:Label res="res.label.forum.user" key="icon_desc"/></td>
  52.     </tr>
  53.     <tr>
  54.       <td height="16"><lt:Label res="res.label.forum.user" key="icon_width"/> 
  55.         <input type="text" name="width" size=5 value="120">
  56.         &nbsp;<lt:Label res="res.label.forum.user" key="icon_height"/> 
  57.         <input type="text" name="height" size=5 value="150"></td>
  58.     </tr>
  59.   </form>
  60. </table>
  61. </body>
  62. </html>