 
				 <%
				<%
				
						 @ page contentType
						=
						"
						text/html;charset=gbk
						"
						 pageEncoding
						=
						"
						gbk
						"
						 
				
				%>
				
				
						@ page contentType
						=
						"
						text/html;charset=gbk
						"
						 pageEncoding
						=
						"
						gbk
						"
						 
				
				%>
				
						
						 
						 <%
				
				<%
				
						 @ page language
						=
						"
						java
						"
				
				%>
				
				
						@ page language
						=
						"
						java
						"
				
				%>
				
						
						 
						 <%
				
				<%
				
						 @ taglib uri
						=
						"
						http://jakarta.apache.org/struts/tags-bean
						"
						 prefix
						=
						"
						bean
						"
				
				%>
				
				
						@ taglib uri
						=
						"
						http://jakarta.apache.org/struts/tags-bean
						"
						 prefix
						=
						"
						bean
						"
				
				%>
				 

 <%
				<%
				
						 @ taglib uri
						=
						"
						http://jakarta.apache.org/struts/tags-html
						"
						 prefix
						=
						"
						html
						"
				
				%>
				
				
						@ taglib uri
						=
						"
						http://jakarta.apache.org/struts/tags-html
						"
						 prefix
						=
						"
						html
						"
				
				%>
				
						
						 
						 <%
				
				<%
				
						 @ page import
						=
						"
						com.infogo.data.CodeManager
						"
				
				%>
				
				
						@ page import
						=
						"
						com.infogo.data.CodeManager
						"
				
				%>
				
						
						 
						 <%
				
				<%
				
						 
				
				
						
								
								 pageContext.setAttribute(
						"
						paymentMap
						"
						,CodeManager.getInstance().getPaymentStyle());
 pageContext.setAttribute(
						"
						paymentMap
						"
						,CodeManager.getInstance().getPaymentStyle());
 %>
				
				%>
				
						
						 <
				html
				>
				
				<
				html
				>
				 
 <
				head
				>
 
				<
				head
				>
				
						
						 <
				title
				>
				JSP for newuserForm form
				</
				title
				>
  
				<
				title
				>
				JSP for newuserForm form
				</
				title
				>
				
						
						 </
				head
				>
 
				</
				head
				>
				
						
						 <
				body
				>
 
				<
				body
				>
				
						
						 <
				html:form 
				action
				="/newuser.do"
				>
  
				<
				html:form 
				action
				="/newuser.do"
				>
				
						
						 name : 
				<
				html:text 
				property
				="name"
				/><
				html:errors 
				property
				="name"
				/><
				br
				/>
   name : 
				<
				html:text 
				property
				="name"
				/><
				html:errors 
				property
				="name"
				/><
				br
				/>
				
						
						 password : 
				<
				html:text 
				property
				="password"
				/><
				html:errors 
				property
				="password"
				/><
				br
				/>
   password : 
				<
				html:text 
				property
				="password"
				/><
				html:errors 
				property
				="password"
				/><
				br
				/>
				
						
						 sex : 男
				<
				html:radio 
				property
				="sex"
				 value
				="1"
				/>
				 女
				<
				html:radio 
				property
				="sex"
				 value
				="2"
				/><
				html:errors 
				property
				="sex"
				/><
				br
				/>
   sex : 男
				<
				html:radio 
				property
				="sex"
				 value
				="1"
				/>
				 女
				<
				html:radio 
				property
				="sex"
				 value
				="2"
				/><
				html:errors 
				property
				="sex"
				/><
				br
				/>
				
						
						 <
				html:select 
				property
				="paymentStyle"
				>
   
				<
				html:select 
				property
				="paymentStyle"
				>
				
						
						 <
				html:options 
				collection
				="paymentMap"
				 property
				="key"
				 labelProperty
				="value"
				/>
    
				<
				html:options 
				collection
				="paymentMap"
				 property
				="key"
				 labelProperty
				="value"
				/>
				
						
						 </
				html:select
				>
   
				</
				html:select
				>
				
						
						 <
				html:submit
				/><
				html:cancel
				/>
   
				<
				html:submit
				/><
				html:cancel
				/>
				
						
						 </
				html:form
				>
  
				</
				html:form
				>
				
						
						 </
				body
				>
 
				</
				body
				>
				
						
						 </
				html
				>
				
				</
				html
				>
		 
		 
		
				 package
				 com.infogo.data;
				package
				 com.infogo.data;

 import
				 java.util.HashMap;
				import
				 java.util.HashMap;
 import
				 java.util.Map;
				import
				 java.util.Map;


 public
				 
				class
				 CodeManager
				public
				 
				class
				 CodeManager 
				
						 {
				
				
						{
 
    
 private
						 
						static
						 CodeManager _instance 
						=
						 
						new
						 CodeManager();
    
						private
						 
						static
						 CodeManager _instance 
						=
						 
						new
						 CodeManager();

 private
						 Map paymentStyle 
						=
						 
						new
						 HashMap();
    
						private
						 Map paymentStyle 
						=
						 
						new
						 HashMap();
 
    

 private
						 CodeManager()
    
						private
						 CodeManager() 
						
								 {
						
						
								{
 super
								();
        
								super
								();
 paymentStyle.put(
								new
								 Integer(
								1
								),
								"
								网上支付
								"
								);
        paymentStyle.put(
								new
								 Integer(
								1
								),
								"
								网上支付
								"
								);
 paymentStyle.put(
								new
								 Integer(
								2
								),
								"
								信用卡
								"
								);
        paymentStyle.put(
								new
								 Integer(
								2
								),
								"
								信用卡
								"
								);
 }
    }
						
						
								
								 
    
 public
						 
						static
						 CodeManager getInstance()
    
						public
						 
						static
						 CodeManager getInstance()

 
    
						
								 {
						
						
								{
 return
								 _instance;
        
								return
								 _instance;
 }
    }
						
						
								
								 
    
 public
						 Map getPaymentStyle()
    
						public
						 Map getPaymentStyle()

 
    
						
								 {
						
						
								{
 return
								 
								this
								.paymentStyle;
        
								return
								 
								this
								.paymentStyle;
 }
    }
						
						
								
								 
								
								 }
}
				
				
						
						 
				
		 
		
				
				
 
		
				 //
				Created by MyEclipse Struts
				//
				Created by MyEclipse Struts
 //
				 XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xsl
				//
				 XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xsl
				
						
						 
				
				
						
						 package
				 com.infogo.struts.form;
				
				package
				 com.infogo.struts.form;

 import
				 javax.servlet.http.HttpServletRequest;
				import
				 javax.servlet.http.HttpServletRequest;

 import
				 org.apache.struts.action.ActionErrors;
				import
				 org.apache.struts.action.ActionErrors;
 import
				 org.apache.struts.action.ActionForm;
				import
				 org.apache.struts.action.ActionForm;
 import
				 org.apache.struts.action.ActionMapping;
				import
				 org.apache.struts.action.ActionMapping;


 /** */
				
						/**
				/** */
				
						/**
						 
 * MyEclipse Struts
 * MyEclipse Struts
 * Creation date: 04-19-2006
 * Creation date: 04-19-2006
 *
 * 
 * XDoclet definition:
 * XDoclet definition:
 * @struts.form name="newuserForm"
 * @struts.form name="newuserForm"
 */
 
						*/
				
				
						
						 
						 public
				 
				class
				 NewuserForm 
				extends
				 ActionForm
				
				public
				 
				class
				 NewuserForm 
				extends
				 ActionForm 
				
						 {
				
				
						{

 //
						 --------------------------------------------------------- Instance Variables
    
						//
						 --------------------------------------------------------- Instance Variables
						
								
								 
						
						
								
								 
								 /** */
						
								/**
								 sex property 
								*/
    
						/** */
						
								/**
								 sex property 
								*/
						
						
								
								 private
						 Integer sex 
						=
						 
						new
						 Integer(
						1
						);
    
						private
						 Integer sex 
						=
						 
						new
						 Integer(
						1
						);


 /** */
						
								/**
								 password property 
								*/
    
						/** */
						
								/**
								 password property 
								*/
						
						
								
								 private
						 String password;
    
						private
						 String password;


 /** */
						
								/**
								 name property 
								*/
    
						/** */
						
								/**
								 name property 
								*/
						
						
								
								 private
						 String name;
    
						private
						 String name;
 
    
 private
						 Integer paymentStyle;
    
						private
						 Integer paymentStyle;

 //
						 --------------------------------------------------------- Methods
    
						//
						 --------------------------------------------------------- Methods
						
								
								 
						
						
								
								 
								 public
						 Integer getPaymentStyle()
    
						public
						 Integer getPaymentStyle() 
						
								 {
						
						
								{
 return
								 paymentStyle;
        
								return
								 paymentStyle;
 }
    }
						
						
								
								 
								
								 
								 public
						 
						void
						 setPaymentStyle(Integer paymentStyle)
    
						public
						 
						void
						 setPaymentStyle(Integer paymentStyle) 
						
								 {
						
						
								{
 this
								.paymentStyle 
								=
								 paymentStyle;
        
								this
								.paymentStyle 
								=
								 paymentStyle;
 }
    }
						
						
								
								 
								
								 
								 /** */
						
								/**
    
						/** */
						
								/**
								 
 * Method validate
     * Method validate
 * 
								@param
								 mapping
     * 
								@param
								 mapping
 * 
								@param
								 request
     * 
								@param
								 request
 * 
								@return
								 ActionErrors
     * 
								@return
								 ActionErrors
 */
     
								*/
						
						
								
								 public
						 ActionErrors validate(
    
						public
						 ActionErrors validate(
 ActionMapping mapping,
        ActionMapping mapping,

 HttpServletRequest request)
        HttpServletRequest request) 
						
								 {
						
						
								{

 //
								 TODO Auto-generated method stub
        
								//
								 TODO Auto-generated method stub
								
										
										 return
								 
								null
								;
								
								        
								return
								 
								null
								;
 }
    }
						
						
								
								 
								
								 
								 /** */
						
								/**
    
						/** */
						
								/**
								 
 * Method reset
     * Method reset
 * 
								@param
								 mapping
     * 
								@param
								 mapping
 * 
								@param
								 request
     * 
								@param
								 request
 */
     
								*/
						
						
								
								 
								 public
						 
						void
						 reset(ActionMapping mapping, HttpServletRequest request)
    
						public
						 
						void
						 reset(ActionMapping mapping, HttpServletRequest request) 
						
								 {
						
						
								{

 //
								 TODO Auto-generated method stub
        
								//
								 TODO Auto-generated method stub
								
										
										 }
								
								    }
						
						
								
								 
								
								 
								 /** */
						
								/**
    
						/** */
						
								/**
								 
 * Returns the sex.
     * Returns the sex.
 * 
								@return
								 Integer
     * 
								@return
								 Integer
 */
     
								*/
						
						
								
								 
								 public
						 Integer getSex()
    
						public
						 Integer getSex() 
						
								 {
						
						
								{
 return
								 sex;
        
								return
								 sex;
 }
    }
						
						
								
								 
								
								 
								 /** */
						
								/**
    
						/** */
						
								/**
								 
 * Set the sex.
     * Set the sex.
 * 
								@param
								 sex The sex to set
     * 
								@param
								 sex The sex to set
 */
     
								*/
						
						
								
								 
								 public
						 
						void
						 setSex(Integer sex)
    
						public
						 
						void
						 setSex(Integer sex) 
						
								 {
						
						
								{
 this
								.sex 
								=
								 sex;
        
								this
								.sex 
								=
								 sex;
 }
    }
						
						
								
								 
								
								 
								 /** */
						
								/**
    
						/** */
						
								/**
								 
 * Returns the password.
     * Returns the password.
 * 
								@return
								 String
     * 
								@return
								 String
 */
     
								*/
						
						
								
								 
								 public
						 String getPassword()
    
						public
						 String getPassword() 
						
								 {
						
						
								{
 return
								 password;
        
								return
								 password;
 }
    }
						
						
								
								 
								
								 
								 /** */
						
								/**
    
						/** */
						
								/**
								 
 * Set the password.
     * Set the password.
 * 
								@param
								 password The password to set
     * 
								@param
								 password The password to set
 */
     
								*/
						
						
								
								 
								 public
						 
						void
						 setPassword(String password)
    
						public
						 
						void
						 setPassword(String password) 
						
								 {
						
						
								{
 this
								.password 
								=
								 password;
        
								this
								.password 
								=
								 password;
 }
    }
						
						
								
								 
								
								 
								 /** */
						
								/**
    
						/** */
						
								/**
								 
 * Returns the name.
     * Returns the name.
 * 
								@return
								 String
     * 
								@return
								 String
 */
     
								*/
						
						
								
								 
								 public
						 String getName()
    
						public
						 String getName() 
						
								 {
						
						
								{
 return
								 name;
        
								return
								 name;
 }
    }
						
						
								
								 
								
								 
								 /** */
						
								/**
    
						/** */
						
								/**
								 
 * Set the name.
     * Set the name.
 * 
								@param
								 name The name to set
     * 
								@param
								 name The name to set
 */
     
								*/
						
						
								
								 
								 public
						 
						void
						 setName(String name)
    
						public
						 
						void
						 setName(String name) 
						
								 {
						
						
								{
 this
								.name 
								=
								 name;
        
								this
								.name 
								=
								 name;
 }
    }
						
						
								
								 
								
								 }
}
				
				
						
						 
						
						 
				
		 
		 
		
				 //
				Created by MyEclipse Struts
				//
				Created by MyEclipse Struts
 //
				 XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xsl
				//
				 XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xsl
				
						
						 
				
				
						
						 package
				 com.infogo.struts.action;
				
				package
				 com.infogo.struts.action;

 import
				 javax.servlet.http.HttpServletRequest;
				import
				 javax.servlet.http.HttpServletRequest;
 import
				 javax.servlet.http.HttpServletResponse;
				import
				 javax.servlet.http.HttpServletResponse;

 import
				 org.apache.struts.action.ActionForm;
				import
				 org.apache.struts.action.ActionForm;
 import
				 org.apache.struts.action.ActionForward;
				import
				 org.apache.struts.action.ActionForward;
 import
				 org.apache.struts.action.ActionMapping;
				import
				 org.apache.struts.action.ActionMapping;
 import
				 org.apache.struts.actions.MappingDispatchAction;
				import
				 org.apache.struts.actions.MappingDispatchAction;

 import
				 com.infogo.struts.form.NewuserForm;
				import
				 com.infogo.struts.form.NewuserForm;


 /** */
				
						/**
				/** */
				
						/**
						 
 * MyEclipse Struts
 * MyEclipse Struts
 * Creation date: 04-19-2006
 * Creation date: 04-19-2006
 *
 * 
 * XDoclet definition:
 * XDoclet definition:
 * @struts.action path="/newuser" name="newuserForm" input="/user/user.jsp" scope="request" validate="true"
 * @struts.action path="/newuser" name="newuserForm" input="/user/user.jsp" scope="request" validate="true"
 */
 
						*/
				
				
						
						 
						 public
				 
				class
				 NewuserAction 
				extends
				 MappingDispatchAction
				
				public
				 
				class
				 NewuserAction 
				extends
				 MappingDispatchAction 
				
						 {
				
				
						{

 //
						 --------------------------------------------------------- Instance Variables
    
						//
						 --------------------------------------------------------- Instance Variables

 //
						 --------------------------------------------------------- Methods
    
						//
						 --------------------------------------------------------- Methods
						
								
								 
						
						
								
								 
								 /** */
						
								/**
    
						/** */
						
								/**
								 
 * Method execute
     * Method execute
 * 
								@param
								 mapping
     * 
								@param
								 mapping
 * 
								@param
								 form
     * 
								@param
								 form
 * 
								@param
								 request
     * 
								@param
								 request
 * 
								@param
								 response
     * 
								@param
								 response
 * 
								@return
								 ActionForward
     * 
								@return
								 ActionForward
 */
     
								*/
						
						
								
								 public
						 ActionForward execute(
    
						public
						 ActionForward execute(
 ActionMapping mapping,
        ActionMapping mapping,
 ActionForm form,
        ActionForm form,
 HttpServletRequest request,
        HttpServletRequest request,

 HttpServletResponse response)
        HttpServletResponse response) 
						
								 {
						
						
								{
 NewuserForm newuserForm 
								=
								 (NewuserForm) form;
        NewuserForm newuserForm 
								=
								 (NewuserForm) form;
 System.out.println(
								"
								[SEX]:
								"
								 
								+
								 newuserForm.getSex());
        System.out.println(
								"
								[SEX]:
								"
								 
								+
								 newuserForm.getSex());
 System.out.println(
								"
								[PAYMENTSTYLE]:
								"
								 
								+
								 newuserForm.getPaymentStyle());
        System.out.println(
								"
								[PAYMENTSTYLE]:
								"
								 
								+
								 newuserForm.getPaymentStyle());
 return
								 
								null
								;
        
								return
								 
								null
								;
 }
    }
						
						
								
								 
								
								 }
}
				
				
						
						 
						
						 
				
		 
		 
		
				 <?
				xml version="1.0" encoding="UTF-8"
				?>
				<?
				xml version="1.0" encoding="UTF-8"
				?>
				
						
						 <!
				DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd" 
				>
				
				<!
				DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd" 
				>
				
						
						 <
				struts-config
				>
				
				<
				struts-config
				>
				
						
						 <
				form-beans
				>
    
				<
				form-beans
				>
				
						
						 <
				form-bean 
				name
				="newuserForm"
				 type
				="com.infogo.struts.form.NewuserForm"
				 
				/>
        
				<
				form-bean 
				name
				="newuserForm"
				 type
				="com.infogo.struts.form.NewuserForm"
				 
				/>
				
						
						 </
				form-beans
				>
    
				</
				form-beans
				>
				
						
						 <
				action-mappings
				>
    
				<
				action-mappings
				>
				
						
						 <
				action
    
				<
				action
 attribute
				="newuserForm"
      
				attribute
				="newuserForm"
				
						
						 input
				="/user.jsp"
      input
				="/user.jsp"
				
						
						 name
				="newuserForm"
      name
				="newuserForm"
				
						
						 path
				="/newuser"
      path
				="/newuser"
				
						
						 scope
				="request"
      scope
				="request"
				
						
						 type
				="com.infogo.struts.action.NewuserAction"
				 
				/>
      type
				="com.infogo.struts.action.NewuserAction"
				 
				/>
				
						
						 <
				action 
				forward
				="/user.jsp"
				 path
				="/toAdd"
				 
				/>
    
				<
				action 
				forward
				="/user.jsp"
				 path
				="/toAdd"
				 
				/>
				
						
						 
        
 </
				action-mappings
				>
    
				</
				action-mappings
				>
				
						
						 <
				message-resources 
				parameter
				="com.infogo.struts.ApplicationResources"
				 
				/>
    
				<
				message-resources 
				parameter
				="com.infogo.struts.ApplicationResources"
				 
				/>
				
						
						 </
				struts-config
				>
				
				</
				struts-config
				>
				
						
						 
				
		 
		
				
 =======================
		
				 
				 <%
				<%
				
						 @ page contentType
						=
						"
						text/html;charset=gbk
						"
						 pageEncoding
						=
						"
						gbk
						"
						 
				
				%>
				
				
						@ page contentType
						=
						"
						text/html;charset=gbk
						"
						 pageEncoding
						=
						"
						gbk
						"
						 
				
				%>
				
						
						 
						 <%
				
				<%
				
						 @ page language
						=
						"
						java
						"
				
				%>
				
				
						@ page language
						=
						"
						java
						"
				
				%>
				
						
						 
						 <%
				
				<%
				
						 @ taglib uri
						=
						"
						http://jakarta.apache.org/struts/tags-bean
						"
						 prefix
						=
						"
						bean
						"
				
				%>
				
				
						@ taglib uri
						=
						"
						http://jakarta.apache.org/struts/tags-bean
						"
						 prefix
						=
						"
						bean
						"
				
				%>
				 

 <%
				<%
				
						 @ taglib uri
						=
						"
						http://jakarta.apache.org/struts/tags-html
						"
						 prefix
						=
						"
						html
						"
				
				%>
				
				
						@ taglib uri
						=
						"
						http://jakarta.apache.org/struts/tags-html
						"
						 prefix
						=
						"
						html
						"
				
				%>
				
						
						 
						 <%
				
				<%
				
						 @ taglib uri
						=
						"
						http://struts.apache.org/tags-logic
						"
						 prefix
						=
						"
						logic
						"
				
				%>
				
				
						@ taglib uri
						=
						"
						http://struts.apache.org/tags-logic
						"
						 prefix
						=
						"
						logic
						"
				
				%>
				
						
						 
						 <%
				
				<%
				
						 @ page import
						=
						"
						com.infogo.data.CodeManager
						"
				
				%>
				
				
						@ page import
						=
						"
						com.infogo.data.CodeManager
						"
				
				%>
				
						
						 
						 <%
				
				<%
				
						 
				
				
						
								
								 pageContext.setAttribute(
						"
						paymentMap
						"
						,CodeManager.getInstance().getPaymentStyle());
    pageContext.setAttribute(
						"
						paymentMap
						"
						,CodeManager.getInstance().getPaymentStyle());
 pageContext.setAttribute(
						"
						pricingList
						"
						,CodeManager.getInstance().getPricingList());
    pageContext.setAttribute(
						"
						pricingList
						"
						,CodeManager.getInstance().getPricingList());
 %>
				
				%>
				
						
						 <
				html
				>
				
				<
				html
				>
				 
 <
				head
				>
    
				<
				head
				>
				
						
						 <
				title
				>
				JSP for newuserForm form
				</
				title
				>
        
				<
				title
				>
				JSP for newuserForm form
				</
				title
				>
				
						
						 </
				head
				>
    
				</
				head
				>
				
						
						 <
				body
				>
    
				<
				body
				>
				
						
						 <
				html:form 
				action
				="/newuser.do"
				>
        
				<
				html:form 
				action
				="/newuser.do"
				>
				
						
						 name : 
				<
				html:text 
				property
				="name"
				/><
				html:errors 
				property
				="name"
				/><
				br
				/>
            name : 
				<
				html:text 
				property
				="name"
				/><
				html:errors 
				property
				="name"
				/><
				br
				/>
				
						
						 password : 
				<
				html:text 
				property
				="password"
				/><
				html:errors 
				property
				="password"
				/><
				br
				/>
            password : 
				<
				html:text 
				property
				="password"
				/><
				html:errors 
				property
				="password"
				/><
				br
				/>
				
						
						 sex : 男
				<
				html:radio 
				property
				="sex"
				 value
				="1"
				/>
				 女
				<
				html:radio 
				property
				="sex"
				 value
				="2"
				/><
				html:errors 
				property
				="sex"
				/><
				br
				/>
            sex : 男
				<
				html:radio 
				property
				="sex"
				 value
				="1"
				/>
				 女
				<
				html:radio 
				property
				="sex"
				 value
				="2"
				/><
				html:errors 
				property
				="sex"
				/><
				br
				/>
				
						
						 <
				html:select 
				property
				="paymentStyle"
				>
            
				<
				html:select 
				property
				="paymentStyle"
				>
				
						
						 <
				html:options 
				collection
				="paymentMap"
				 property
				="key"
				 labelProperty
				="value"
				/>
                
				<
				html:options 
				collection
				="paymentMap"
				 property
				="key"
				 labelProperty
				="value"
				/>
				
						
						 </
				html:select
				>
            
				</
				html:select
				>
				
						
						 <
				html:submit
				/><
				html:cancel
				/>
            
				<
				html:submit
				/><
				html:cancel
				/>
				
						
						 </
				html:form
				>
        
				</
				html:form
				>
				
						
						 
						 <%
        
				<%
				
						 --
						  
						<
						logic:iterate id
						=
						"
						pricing
						"
						 collection
						=
						"
						<%=CodeManager.getInstance().getPricingList()%>
						"
						>
						 
						--
				
				%>
				
				
						--
						  
						<
						logic:iterate id
						=
						"
						pricing
						"
						 collection
						=
						"
						<%=CodeManager.getInstance().getPricingList()%>
						"
						>
						 
						--
				
				%>
				
						
						 <
				logic:iterate 
				id
				="pricing"
				 name
				="pricingList"
				>
        
				<
				logic:iterate 
				id
				="pricing"
				 name
				="pricingList"
				>
				
						
						 <
				bean:write 
				name
				="pricing"
				 property
				="pricingName"
				/>
            
				<
				bean:write 
				name
				="pricing"
				 property
				="pricingName"
				/>
				
						
						 <
				html:link 
				target
				="_blank"
				 action
				="/user/toAdd.do"
				 paramId
				="pid"
				 paramName
				="pricing"
				 paramProperty
				="id"
				>
				pricing
				</
				html:link
				>
            
				<
				html:link 
				target
				="_blank"
				 action
				="/user/toAdd.do"
				 paramId
				="pid"
				 paramName
				="pricing"
				 paramProperty
				="id"
				>
				pricing
				</
				html:link
				>
				
						
						 </
				logic:iterate
				>
        
				</
				logic:iterate
				>
				
						
						 
        
 </
				body
				>
    
				</
				body
				>
				
						
						 </
				html
				>
				
				</
				html
				>
				
						
						 
				
		 
	posted on 2006-04-20 15:43 
北国狼人的BloG 阅读(603) 
评论(0)  编辑  收藏  所属分类: 
达内学习总结