download_fairuse.jsp

来自「Sun公司Dream项目」· JSP 代码 · 共 67 行

JSP
67
字号
<%@ include file="common_imports.jsp" %>



<%

    pageTitle = "Download";

    if (jspPath == null)

        jspPath = "/shop/index.jsp";

String itemID = request.getParameter("item_id");

String itemTitle = request.getParameter("item_title");

String faURL = request.getParameter("fa_url");

%>

<%@ include file="top_body.jsp" %>



            <td width="395" valign="top">

              <table width="375" border="0" cellspacing="0" cellpadding="0">

                <tr>

                  <td>

                    <table width="375" border="0" cellspacing="0" cellpadding="0">

                      <tr>

                        <td >

                          <TABLE width="70%" border="1" cellspacing="0" cellpadding="2">

                            <TR>

                                <TD class="body_text" ><b>Product ID</b></TD>

                                <TD width="45%" class="body_text"><b>Product Title</b></TD>

                                <TD class="body_text"><b>Download</b></tD>

                            </TR>

                    <%

                        if (!request.getAttribute("dispatcher").equals("ShopServlet")) {

                    %>

                            <TR>

                                <TD colspan="4" class="body_text" >You have not asserted any rights.</TD>

                            </TR>

                    <%

                        } else {

                    %>

                            <TR>

                                <TD class="body_text" ><%=itemID%></TD>

                                <TD class="body_text" ><%=itemTitle%></TD>

                                <TD class="body_text" ><A HREF="<%=faURL%>">download</A></TD>

                            </TR>



                    <%  

                        }

                    %>

                              <tr>

                                <td colspan="4">&nbsp;</td>

                              </tr>                      

                              <TR>

                                 <TD  colspan="4" align="center"><A HREF="index.jsp" style="text-decoration:none;">

                                 <IMG SRC="images/continue_shop.gif" border="0"></A></TD>

                              </TR>                                          

                          </TABLE>

                         </td>

                      </tr>

                      <tr>

                        <td>&nbsp;</td>

                      </tr>

                    </table>

                  </td>

                </tr>

                <tr>

                  <td width="175">&nbsp;</td>

                  <td width="175">&nbsp;</td>

                </tr>

              </table>

            </td>



<%@ include file="footer.jsp" %>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?