1.使用標籤
<
html:select
property
="city"
>
<
html:option
value
="010"
>
北京市html:option
>
<
html:option
value
="020"
>
廣州市html:option
>
<
html:option
value
="021"
>
上海市html:option
>
html:select
>
2.使用標籤
1)在actionform中加入字段
private list citylist=new arraylist();
2)加入必須的getter方法
public list getcitylist()
3)在reset方法內給citylist填充內容
citylist.add(new labelvaluebean("北京市","010"));
citylist.add(new labelvaluebean("廣州市", "020"));
citylist.add(new labelvaluebean("上海市", "021"));
4)jsp標籤中使用
3.使用標籤
<
%list
citylist
=new
arraylist();
citylist.add(new labelvaluebean("北京市","010"));
citylist.add(new labelvaluebean("廣州市", "020"));
citylist.add(new labelvaluebean("上海市", "021"));
request.setattribute("list",citylist); //必須是request物件
%>
<
html:select
property
="city3"
>
<
html:options
collection
="list"
labelproperty
="label"
property
="value"
/>
html:select
>
struts建立action的三種方式
1.建立普通action,不需要實現介面或繼承超類 public class defaultaction 建立乙個普通的類,在類中實現execute 方法。配置action 這樣就可以實現乙個action,進入測試階段 在url上新增action動作,訪問該action 然後在日誌中應該而可以找到a...
wpf中bool按鈕三種方式
今天用到了bool按鈕,學習了下 1,這可通過自己繪製。然後適用於乙個bool按鈕 xmal cs裡面的 public static readonly dependencyproperty ischeckedproperty dependencyproperty.register ischecked...
Spring 和 struts 整合的三種方式
1 使用spring 的 actionsupport 2 使用spring 的 delegatingrequestprocessor 類。3 全權委託。無論用那種方法來整合第一步就是要為struts來裝載spring的應用環境。就是在 struts 中加入乙個外掛程式。struts config.x...