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

📄 netinput.jsp

📁 本套系统采用了业界当前最为流行的beanAction组件
💻 JSP
字号:
<%@ page language="java"  pageEncoding="UTF-8"%>

<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
  <head>
  	<html:base/>
  	
  	
    <link rel="stylesheet" type="text/css" href="../common/css/common.css" /> 
    <title>录入网间结算信息</title>
    <%
	String type =(String)session.getAttribute("userClass");
	if (!type.equals("1")) {
	session.setAttribute("notLogin", true);
		out.print("<script language=javascript>window.location.href='/TeleReport/jsp/login.jsp';</script>");		
	}                                                
  %>
    
    <script type="text/javascript" src="../common/js/common.js"></script>
    
  </head>
  
  <body>
  
  
 <html:form  action="/jsp/insertNet" onsubmit = "return netInputCheck()">
 <table >
  <tr>
				<td class="item">
					结算月份
				</td>
				<td class="item_value">
					<html:select property="year">
						<html:option value="2008">2008</html:option>
						<html:option value="2009">2009</html:option>
					</html:select>
					<html:select property="month">
						<html:option value="01">1</html:option>
						<html:option value="02">2</html:option>
						<html:option value="03">3</html:option>
						<html:option value="04">4</html:option>
						<html:option value="05">5</html:option>
						<html:option value="06">6</html:option>
						<html:option value="07">7</html:option>
						<html:option value="08">8</html:option>
						<html:option value="09">9</html:option>
						<html:option value="10">10</html:option>
						<html:option value="11">11</html:option>
						<html:option value="12">12</html:option>
					</html:select>
				</td>         
			</tr>
        
 
 	<tr>
 		<td class="item">地市:</td>
 		 <td class="item_value">
 		 <html:select property="cityId" > 		
			<html:optionsCollection property="cityList" label="cityName" value="cityId"/>		
 		 </html:select>
 		 
 	 </td>
 	 </tr>
 	 
 		<tr>
<td class="item">产品</td>
<td><html:select property="productId">
					<html:optionsCollection property="prodList" label="prodName" value="prodId"/>
					
	</html:select></td></tr>
  	
  	<tr>
<td class="item">结算运营商</td>
<td><html:select property="netSalerId">
						<html:option value="1">电信</html:option>
						<html:option value="2">移动</html:option>
						<html:option value="3">联通</html:option>
						<html:option value="4">铁通</html:option>
	</html:select></td></tr>
	<tr>
<td class="item">结算类型</td>
<td><html:select property="netTypeId">
						<html:option value="2">结算收入</html:option>
						<html:option value="1">结算支出</html:option>
    </html:select></td></tr>
  	
  	<tr>
 		<td class="item">
 	 	金额:
 	 	 </td>
 		 <td class="itemvalue">
 		 <html:text property="netMoney" size="20" />
 	 	</td>
  	</tr>
  	
    	
 	 <tr>
 	 <td> 	
 	
 	</td>
 	<td>
 	<input type="submit" value="保存" class="button" />
	<input type="reset"  value="取消" class = "button">
	</td>
	</tr>
	
	</table>	
 
   </html:form>
   </body>
</html:html>

⌨️ 快捷键说明

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