home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 July / CMCD0703.ISO / Software / Freeware / Programare / bugzero / jsp / create.jsp < prev    next >
Text File  |  2003-06-05  |  676b  |  26 lines

  1. <%@ page
  2.     import="com.websina.bean.*,com.websina.util.*,com.websina.util.log.Log"
  3. %>
  4. <html>
  5. <head>
  6. <title>Create and Submit</title>
  7. <script LANGUAGE="JavaScript" src="script/utils.js"></script>
  8. <script LANGUAGE="JavaScript" src="script/attachment.js"></script>
  9. </head>
  10. <body topmargin=0>
  11. <%@ include file="_cache.jspf" %>
  12. <%@ include file="_header.jspf" %>
  13. <%      
  14.   if (!person.isAllowed("create")) {
  15.     out.print("<center><font color=red><b>");
  16.     out.print(MessageCode.get("servlet.issue.permission_denied"));
  17.     out.print("</b></font></center>");
  18.     return;
  19.   }
  20.   int issueId = 0;
  21. %>
  22.  
  23. <%@ include file="_issueform.jspf" %>
  24.  
  25. </body></html>
  26.