⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ingest.jsp

📁 Sun公司Dream项目
💻 JSP
字号:
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">

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



<html>

<head>

   <title>Video On Demand</title>

</head>



<body background="images/bg800.jpg">



<center><table CELLSPACING=0 CELLPADDING=0 WIDTH="100%" BGCOLOR="#000000" >

<tr>

<td><img SRC="images/leftlogo.png" height=32 width=71></td>

<td>

<center><img SRC="images/homemoviesbar.png" BORDER=0 height=32 width=260></center>

</td>

<td>

<div align=right><img SRC="images/smallsunlogo.png" BORDER=0 height=32 width=71></div>

</td>

</tr>

</table></center>



<center>

<br>

<b><font color="#000066">Welcome <%=me.firstname%>

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

EUR <%=billing.getAccountBalance(me)%> left on your prepaid account

</font></b>

<br><br>

<table BORDER WIDTH="80%" >

<tr>

<td><b>



<%

for (int i=0; i<me.categories.length; i++) {

		  Movie[] movies = mediacat.getMovieList(me.categories[i].genreid);

if (movies.length > 0) {

%>

<font color="#FFFF00">

<br><%=me.categories[i].genrename%> : <br>

</font>

<font color="#000066">

<%

		  for (int j=0; j<movies.length; j++) {

		    Movie movie = mediacat.getMovieMetadata(movies[j].id);

		    String rtspurl = "rtsp://152.70.40.215:554//152.70.40.215/" + movie.movieurl  + ";servertype=MediaBase;";

		    String rtsplink = "<A HREF=\"" + rtspurl + "\">" + movie.movieurl + "</A>";

%>

&nbsp;&nbsp;&nbsp;<%=movies[j].shorttitle%> <%=rtsplink%><br>

<%

		    } // end for

%>

</font>

<%

		  } // end if

%>

<%

} // end for

%>



</b></td>



</tr>

</table></center>

<br>



<center>

<p><font color="#FFFFFF"><font size=-2>(C) 2003, Copyrights Sun Microsystems, Inc.</font></font></center>



</body>

</html>

⌨️ 快捷键说明

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