Hello:
I am creating a method which needs to return an
object which contains 3 HTML tables and a few other
HTML objects. I want to basically return an object
which contains all these elements.
How can I do this? What class type would this method
have to return.? How can I "concatenate" all the HTML
objects I need to use without using the body tag?
For example:
public ??? create questionPanel()
{
Table firstTable = new Table();
Table secondTable = new Table();
Table thirdTable = new Table();
.
.
.
Other Objects.....
....add all objects together
return ????;
}
Any help would greatly be appreciated.
Thanks:
Alex Restrepo
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Returning an object containing various HTML objects
RESTREPO, ALEXANDER G [Non-Pharmacia/1000] Tue, 20 Mar 2001 14:44:16 -0800
- Re: Returning an object contain... RESTREPO, ALEXANDER G [Non-Pharmacia/1000]
- Re: Returning an object co... Stephan Nagy
- RE: Returning an objec... David Ethell
- Re: Returning an objec... Ricardo Neisse
