gmszone 发表于 2011-5-18 07:21:35

晒点教务系统的代码 jsp

<%@ page contentType="text/html; charset=GBK" %>
<%@include file="/common/taglib.jsp"%>
<%@include file="/common/header_default.jsp"%>
<%@ pageimport="cc.c37c.campus.studentinfo.business.ManageStudentService"%>


<logic:present role="<%=cc.c37c.jaas.ValidatePermission.getRoles("系统登录", "学生登录页面")%>">
<%
          byte[] buf = ManageStudentService.getInstance().getStudentPhoto( (String)request.getParameter("studentNO") );
               if( buf==null ||buf.length > 100 ){
%>
照片已经上传!
<%
       return;
         }
%>
</logic:present>




<script language=javascript>
function doFrom()
{
        if (document.forms.photoFile.value=="")
        {
                alert('对不起!请先选择您要上传的文件!');
                return false;
        }else{
                return true;
        }
}
</script>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<html:form action="/uploadStuPhotoAction.do" method="post" enctype="multipart/form-data" onsubmit="return doFrom();">
<html:hidden property="studentNO" value="<%=request.getParameter("studentNO")%>"/>
<tr>
    <td>
      <table width="489" height="100" border="0" align="center" cellpadding="0" cellspacing="0">
<tr><span class="table-content2">

</tr>
<tr><span class="table-content2">

<h3>本页面的功能是将学生的照片上传到学籍库中,请按照以下说明操作。<br></h3>
注意:1、选择一个本地机器上的学生照片。<br>
            2、该文件为jpg格式的文件,其格式为“学生学号.jpg”。<br>
            3、上传成功后,可以在打印打印学生卡片和查看学生工信息时看到学生的照片。<br>
            4、学生照片最好是 160 × 200 象素的照片。<br>
            7、学生照片上传过程可能需要几分钟,请耐心等待……<br><br>
</tr>
<tr>
    <td align="center">
    <html:file property="photoFile"/><br/><br/><br/>
    </td>
</tr>
         <tr class="table-content4">
          <td align="center">
              <input name="addPlan" type="submit" class="button"value="确认上传"><input name="addPlan" type="button" class="button"value="关闭窗口"onclick="window.close()">
         </td>
          </tr>
</html:form>
</table>
    </td>
</tr>
</table>
</body>
</html:html>

眼镜蛇 发表于 2011-5-18 08:23:03

教务系统确实是JSP的

支持一下

拉莫斯 发表于 2011-5-18 23:47:23

让我看看都有什么。
使用include 指令嵌入静态文件;导包;使用标签,业务流;js用于判断;地址栏传参;ajax技术;上传组件;

能在学校找到一个懂jsp servlet的人,不容易。

gmszone 发表于 2011-5-19 15:41:37

回复 拉莫斯 的帖子

我不懂Jsp……,这只是我们学校教务系统的代码(货真价实的),长期学的、做的是前端,后台目前刚开始学,PHP

gmszone 发表于 2011-5-19 15:43:43

回复 拉莫斯 的帖子

上传组件、Ajax表示喜欢用JQuery来实现,

拉莫斯 发表于 2011-5-19 15:54:25

回复 gmszone 的帖子

做前端开发好,现在的后台最多,拿来即用,这样不管php多草根,起码做出来的东西还能火两年。
我做不了页面,美工差得很。

gmszone 发表于 2011-5-19 17:24:58

RE: 晒点教务系统的代码 jsp

回复 拉莫斯 的帖子

呵呵,做后台那也不错,N多想做的页面都都做不了。我比较喜欢设计的工作。。

temptemp 发表于 2011-6-14 01:49:16

回复 拉莫斯 的帖子

能在学校找到一个懂jsp servlet的人,不容易。!!!
这话2劲大了!去问问08级的,这些小儿科有几个不懂!

拉莫斯 发表于 2011-7-5 14:07:41

你是从manage目录的找到bak?
页: [1]
查看完整版本: 晒点教务系统的代码 jsp