Posted By:
Tim_Hay
Posted On:
Tuesday, August 20, 2002 05:54 AM
Sorry about the last post.... Here it is again correctly. I am attempting to use the tag to get the values of the s in a . I would like to populate these values on an existing bean, rather than creating a new one Here is what i have so far Here is the get/set for the webInfo: // get and set the webInfo public Vector getWebInfo() { return webBasedAdminInfo; } public void setWebInfo(String[] someWebBasedAdminInfo) { for (int i=0; i webBasedAdminInfo.add(someWebBasedAdminInfo[i]); } } when i attend to render the web page it o
More>>
Sorry about the last post.... Here it is again correctly.
I am attempting to use the
tag to get the values of the
s in a
. I would like to populate these values on an existing bean, rather than creating a new one
Here is what i have so far
Here is the get/set for the webInfo:
// get and set the webInfo
public Vector getWebInfo() {
return webBasedAdminInfo;
}
public void setWebInfo(String[] someWebBasedAdminInfo) {
for (int i=0; i
webBasedAdminInfo.add(someWebBasedAdminInfo[i]);
}
}
when i attend to render the web page it only loads half way. What am i doing wrong?
thanks
Tim