473,322 Members | 1,911 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

Create a <table> of <textarea>s

I have an ArrayList of data gathered from a database. I want to create a web
page from this data by creating a <table>, each cell in each row displays the
appropriate data. One of those cells in each row needs a <textarea> control.

The background supporting classes are completed, the only task left now is
to create the web page. I am at a loss on how to create the table in the page
populated by the data. Previously, I would have just iterated through the
data placing the data in the cells on the HTML page by <%= %>.

Any help would be appreciated.
Thank you.
Nov 18 '05 #1
8 2213
Have you looked into using a repeater control?

--
Lateralus [MCAD]
"ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
news:80**********************************@microsof t.com...
I have an ArrayList of data gathered from a database. I want to create a
web
page from this data by creating a <table>, each cell in each row displays
the
appropriate data. One of those cells in each row needs a <textarea>
control.

The background supporting classes are completed, the only task left now is
to create the web page. I am at a loss on how to create the table in the
page
populated by the data. Previously, I would have just iterated through the
data placing the data in the cells on the HTML page by <%= %>.

Any help would be appreciated.
Thank you.

Nov 18 '05 #2
I'm looking into it right now - I was just hoping for something as quick and
easy as what I used to do.

Thank you

"Lateralus [MCAD]" wrote:
Have you looked into using a repeater control?

--
Lateralus [MCAD]
"ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
news:80**********************************@microsof t.com...
I have an ArrayList of data gathered from a database. I want to create a
web
page from this data by creating a <table>, each cell in each row displays
the
appropriate data. One of those cells in each row needs a <textarea>
control.

The background supporting classes are completed, the only task left now is
to create the web page. I am at a loss on how to create the table in the
page
populated by the data. Previously, I would have just iterated through the
data placing the data in the cells on the HTML page by <%= %>.

Any help would be appreciated.
Thank you.


Nov 18 '05 #3
I think you'll find that using Repeaters/DataGrids are much cleaner and
simpler than looping through the code manually. Plus it has better
performance.

--
Lateralus [MCAD]
"Lateralus [MCAD]" <dnorm252_at_yahoo.com> wrote in message
news:OG**************@tk2msftngp13.phx.gbl...
Have you looked into using a repeater control?

--
Lateralus [MCAD]
"ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
news:80**********************************@microsof t.com...
I have an ArrayList of data gathered from a database. I want to create a
web
page from this data by creating a <table>, each cell in each row displays
the
appropriate data. One of those cells in each row needs a <textarea>
control.

The background supporting classes are completed, the only task left now
is
to create the web page. I am at a loss on how to create the table in the
page
populated by the data. Previously, I would have just iterated through the
data placing the data in the cells on the HTML page by <%= %>.

Any help would be appreciated.
Thank you.


Nov 18 '05 #4
1.) A Datagrid is a little simpler to use because it is basically a single
table, with a row for every row in the list. A repeater is when you need to
customize the html a bit more. It sounds like you want a <table> for every
row in the array list. So it sounds like a repeater would suit you better.

2.) I usually bind by repeaters/grids to a DataView. The DataSource can be
any System.Collections.IEnumerable derived object such as a
System.Data.DataView for accessing databases, an
System.Collections.ArrayList, a System.Collections.Hashtable, or an array.

HTH

--
Lateralus [MCAD]
"ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
news:88**********************************@microsof t.com...
Two questions on that:

1. Do I need to use the DataGrid with the Repeater?

2. Binding to the data leaves me a little confused. The database is on
another tier and is only accessible through separate business objects.
These
objects then expose the data where they might be held e.g. in ArrayLists.
I
can not create a connection from the .aspx page directly to a database
connection. Can I bind to other "objects"?

Again, thank you for your time.

"Lateralus [MCAD]" wrote:
I think you'll find that using Repeaters/DataGrids are much cleaner and
simpler than looping through the code manually. Plus it has better
performance.

--
Lateralus [MCAD]
"Lateralus [MCAD]" <dnorm252_at_yahoo.com> wrote in message
news:OG**************@tk2msftngp13.phx.gbl...
> Have you looked into using a repeater control?
>
> --
> Lateralus [MCAD]
>
>
> "ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
> news:80**********************************@microsof t.com...
>>I have an ArrayList of data gathered from a database. I want to create
>>a
>>web
>> page from this data by creating a <table>, each cell in each row
>> displays
>> the
>> appropriate data. One of those cells in each row needs a <textarea>
>> control.
>>
>> The background supporting classes are completed, the only task left
>> now
>> is
>> to create the web page. I am at a loss on how to create the table in
>> the
>> page
>> populated by the data. Previously, I would have just iterated through
>> the
>> data placing the data in the cells on the HTML page by <%= %>.
>>
>> Any help would be appreciated.
>> Thank you.
>
>


Nov 18 '05 #5
No problem. Glad to help.

--
Lateralus [MCAD]
"ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
news:66**********************************@microsof t.com...
I found by exposing the ArrayList(s) from the middle-tier objects, the aspx
page can bind the Repeater to it.

Thank you for your help.

"Lateralus [MCAD]" wrote:
1.) A Datagrid is a little simpler to use because it is basically a
single
table, with a row for every row in the list. A repeater is when you need
to
customize the html a bit more. It sounds like you want a <table> for
every
row in the array list. So it sounds like a repeater would suit you
better.

2.) I usually bind by repeaters/grids to a DataView. The DataSource can
be
any System.Collections.IEnumerable derived object such as a
System.Data.DataView for accessing databases, an
System.Collections.ArrayList, a System.Collections.Hashtable, or an
array.

HTH

--
Lateralus [MCAD]
"ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
news:88**********************************@microsof t.com...
> Two questions on that:
>
> 1. Do I need to use the DataGrid with the Repeater?
>
> 2. Binding to the data leaves me a little confused. The database is on
> another tier and is only accessible through separate business objects.
> These
> objects then expose the data where they might be held e.g. in
> ArrayLists.
> I
> can not create a connection from the .aspx page directly to a database
> connection. Can I bind to other "objects"?
>
> Again, thank you for your time.
>
> "Lateralus [MCAD]" wrote:
>
>> I think you'll find that using Repeaters/DataGrids are much cleaner
>> and
>> simpler than looping through the code manually. Plus it has better
>> performance.
>>
>> --
>> Lateralus [MCAD]
>>
>>
>> "Lateralus [MCAD]" <dnorm252_at_yahoo.com> wrote in message
>> news:OG**************@tk2msftngp13.phx.gbl...
>> > Have you looked into using a repeater control?
>> >
>> > --
>> > Lateralus [MCAD]
>> >
>> >
>> > "ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
>> > news:80**********************************@microsof t.com...
>> >>I have an ArrayList of data gathered from a database. I want to
>> >>create
>> >>a
>> >>web
>> >> page from this data by creating a <table>, each cell in each row
>> >> displays
>> >> the
>> >> appropriate data. One of those cells in each row needs a <textarea>
>> >> control.
>> >>
>> >> The background supporting classes are completed, the only task left
>> >> now
>> >> is
>> >> to create the web page. I am at a loss on how to create the table
>> >> in
>> >> the
>> >> page
>> >> populated by the data. Previously, I would have just iterated
>> >> through
>> >> the
>> >> data placing the data in the cells on the HTML page by <%= %>.
>> >>
>> >> Any help would be appreciated.
>> >> Thank you.
>> >
>> >
>>
>>
>>


Nov 18 '05 #6
Is there any reason why you just don't expose the DataSet/DataView from the
business object. As far as how to bind it, all you have to do is set the
datasource in the code behind to your DataSet/DataView/ArrayList and call
DataBind();

protected System.Web.UI.WebControls.Repeater myRepeater;

private void Page_Load(object sender, System.EventArgs e)
{
//your code to load your business object

this.myRepeater.DataSource = put your array list object here;
this.myRepeater.DataBind();
}

--
Lateralus [MCAD]
"ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
news:FC**********************************@microsof t.com...
I have one more question: How do I get to the data in the ArrayList?

What I have is an ArrayList (parent), where each field is another
ArrayList
(children). Each child holds a row returned from a recordset. The class
object has methods where an index (int), is passed in and the
corresponding
child data returned. For example, say each row contains a comment id,
comment
text and response text. Calling ".getComment(index)" where index = 5,
returns
the comment text from the fifth ArrayList or row.

Most of the examples I have found show Repeater with and XML file.
ArrayList
examples show the ArrayList as part of the .aspx file.

"Lateralus [MCAD]" wrote:
No problem. Glad to help.

--
Lateralus [MCAD]
"ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
news:66**********************************@microsof t.com...
>I found by exposing the ArrayList(s) from the middle-tier objects, the
>aspx
> page can bind the Repeater to it.
>
> Thank you for your help.
>
> "Lateralus [MCAD]" wrote:
>
>> 1.) A Datagrid is a little simpler to use because it is basically a
>> single
>> table, with a row for every row in the list. A repeater is when you
>> need
>> to
>> customize the html a bit more. It sounds like you want a <table> for
>> every
>> row in the array list. So it sounds like a repeater would suit you
>> better.
>>
>> 2.) I usually bind by repeaters/grids to a DataView. The DataSource
>> can
>> be
>> any System.Collections.IEnumerable derived object such as a
>> System.Data.DataView for accessing databases, an
>> System.Collections.ArrayList, a System.Collections.Hashtable, or an
>> array.
>>
>> HTH
>>
>> --
>> Lateralus [MCAD]
>>
>>
>> "ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
>> news:88**********************************@microsof t.com...
>> > Two questions on that:
>> >
>> > 1. Do I need to use the DataGrid with the Repeater?
>> >
>> > 2. Binding to the data leaves me a little confused. The database is
>> > on
>> > another tier and is only accessible through separate business
>> > objects.
>> > These
>> > objects then expose the data where they might be held e.g. in
>> > ArrayLists.
>> > I
>> > can not create a connection from the .aspx page directly to a
>> > database
>> > connection. Can I bind to other "objects"?
>> >
>> > Again, thank you for your time.
>> >
>> > "Lateralus [MCAD]" wrote:
>> >
>> >> I think you'll find that using Repeaters/DataGrids are much cleaner
>> >> and
>> >> simpler than looping through the code manually. Plus it has better
>> >> performance.
>> >>
>> >> --
>> >> Lateralus [MCAD]
>> >>
>> >>
>> >> "Lateralus [MCAD]" <dnorm252_at_yahoo.com> wrote in message
>> >> news:OG**************@tk2msftngp13.phx.gbl...
>> >> > Have you looked into using a repeater control?
>> >> >
>> >> > --
>> >> > Lateralus [MCAD]
>> >> >
>> >> >
>> >> > "ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
>> >> > news:80**********************************@microsof t.com...
>> >> >>I have an ArrayList of data gathered from a database. I want to
>> >> >>create
>> >> >>a
>> >> >>web
>> >> >> page from this data by creating a <table>, each cell in each row
>> >> >> displays
>> >> >> the
>> >> >> appropriate data. One of those cells in each row needs a
>> >> >> <textarea>
>> >> >> control.
>> >> >>
>> >> >> The background supporting classes are completed, the only task
>> >> >> left
>> >> >> now
>> >> >> is
>> >> >> to create the web page. I am at a loss on how to create the
>> >> >> table
>> >> >> in
>> >> >> the
>> >> >> page
>> >> >> populated by the data. Previously, I would have just iterated
>> >> >> through
>> >> >> the
>> >> >> data placing the data in the cells on the HTML page by <%= %>.
>> >> >>
>> >> >> Any help would be appreciated.
>> >> >> Thank you.
>> >> >
>> >> >
>> >>
>> >>
>> >>
>>
>>
>>


Nov 18 '05 #7
I figured that since you know how to expose your arraylist, you can expose
your dataset and/or dataview through a public property.

protected DataSet _dataSet = null;

public DataSet MyDataSet
{
get{return(this._dataSet);}
set{this._dataSet = value;}
}

public DataView MyView
{
get{return(this._dataSet.Tables[0].DefaultView);}
}

--
Lateralus [MCAD]
"ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
news:45**********************************@microsof t.com...
The main reason is because I'm not familiar with Microsoft programming
languages and Visual Studio. I've been working in Java, Delphi and Pascal
and
a completely different architecture for some years. C# is no problem but I
find ASP.Net to be a completely different beast.

"Lateralus [MCAD]" wrote:
Is there any reason why you just don't expose the DataSet/DataView from
the
business object. As far as how to bind it, all you have to do is set the
datasource in the code behind to your DataSet/DataView/ArrayList and call
DataBind();

protected System.Web.UI.WebControls.Repeater myRepeater;

private void Page_Load(object sender, System.EventArgs e)
{
//your code to load your business object

this.myRepeater.DataSource = put your array list object here;
this.myRepeater.DataBind();
}

--
Lateralus [MCAD]
"ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
news:FC**********************************@microsof t.com...
>I have one more question: How do I get to the data in the ArrayList?
>
> What I have is an ArrayList (parent), where each field is another
> ArrayList
> (children). Each child holds a row returned from a recordset. The class
> object has methods where an index (int), is passed in and the
> corresponding
> child data returned. For example, say each row contains a comment id,
> comment
> text and response text. Calling ".getComment(index)" where index = 5,
> returns
> the comment text from the fifth ArrayList or row.
>
> Most of the examples I have found show Repeater with and XML file.
> ArrayList
> examples show the ArrayList as part of the .aspx file.
>
>
>
> "Lateralus [MCAD]" wrote:
>
>> No problem. Glad to help.
>>
>> --
>> Lateralus [MCAD]
>>
>>
>> "ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
>> news:66**********************************@microsof t.com...
>> >I found by exposing the ArrayList(s) from the middle-tier objects,
>> >the
>> >aspx
>> > page can bind the Repeater to it.
>> >
>> > Thank you for your help.
>> >
>> > "Lateralus [MCAD]" wrote:
>> >
>> >> 1.) A Datagrid is a little simpler to use because it is basically a
>> >> single
>> >> table, with a row for every row in the list. A repeater is when you
>> >> need
>> >> to
>> >> customize the html a bit more. It sounds like you want a <table>
>> >> for
>> >> every
>> >> row in the array list. So it sounds like a repeater would suit you
>> >> better.
>> >>
>> >> 2.) I usually bind by repeaters/grids to a DataView. The DataSource
>> >> can
>> >> be
>> >> any System.Collections.IEnumerable derived object such as a
>> >> System.Data.DataView for accessing databases, an
>> >> System.Collections.ArrayList, a System.Collections.Hashtable, or an
>> >> array.
>> >>
>> >> HTH
>> >>
>> >> --
>> >> Lateralus [MCAD]
>> >>
>> >>
>> >> "ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
>> >> news:88**********************************@microsof t.com...
>> >> > Two questions on that:
>> >> >
>> >> > 1. Do I need to use the DataGrid with the Repeater?
>> >> >
>> >> > 2. Binding to the data leaves me a little confused. The database
>> >> > is
>> >> > on
>> >> > another tier and is only accessible through separate business
>> >> > objects.
>> >> > These
>> >> > objects then expose the data where they might be held e.g. in
>> >> > ArrayLists.
>> >> > I
>> >> > can not create a connection from the .aspx page directly to a
>> >> > database
>> >> > connection. Can I bind to other "objects"?
>> >> >
>> >> > Again, thank you for your time.
>> >> >
>> >> > "Lateralus [MCAD]" wrote:
>> >> >
>> >> >> I think you'll find that using Repeaters/DataGrids are much
>> >> >> cleaner
>> >> >> and
>> >> >> simpler than looping through the code manually. Plus it has
>> >> >> better
>> >> >> performance.
>> >> >>
>> >> >> --
>> >> >> Lateralus [MCAD]
>> >> >>
>> >> >>
>> >> >> "Lateralus [MCAD]" <dnorm252_at_yahoo.com> wrote in message
>> >> >> news:OG**************@tk2msftngp13.phx.gbl...
>> >> >> > Have you looked into using a repeater control?
>> >> >> >
>> >> >> > --
>> >> >> > Lateralus [MCAD]
>> >> >> >
>> >> >> >
>> >> >> > "ASP Yaboh" <AS******@discussions.microsoft.com> wrote in
>> >> >> > message
>> >> >> > news:80**********************************@microsof t.com...
>> >> >> >>I have an ArrayList of data gathered from a database. I want
>> >> >> >>to
>> >> >> >>create
>> >> >> >>a
>> >> >> >>web
>> >> >> >> page from this data by creating a <table>, each cell in each
>> >> >> >> row
>> >> >> >> displays
>> >> >> >> the
>> >> >> >> appropriate data. One of those cells in each row needs a
>> >> >> >> <textarea>
>> >> >> >> control.
>> >> >> >>
>> >> >> >> The background supporting classes are completed, the only
>> >> >> >> task
>> >> >> >> left
>> >> >> >> now
>> >> >> >> is
>> >> >> >> to create the web page. I am at a loss on how to create the
>> >> >> >> table
>> >> >> >> in
>> >> >> >> the
>> >> >> >> page
>> >> >> >> populated by the data. Previously, I would have just iterated
>> >> >> >> through
>> >> >> >> the
>> >> >> >> data placing the data in the cells on the HTML page by <%=
>> >> >> >> %>.
>> >> >> >>
>> >> >> >> Any help would be appreciated.
>> >> >> >> Thank you.
>> >> >> >
>> >> >> >
>> >> >>
>> >> >>
>> >> >>
>> >>
>> >>
>> >>
>>
>>
>>


Nov 18 '05 #8
I have used a SqlDataAdpter to fill a DataSet which is then bound to a
Repeater. Works great. The DataSet contains a table of blocks of text from
many web
applications, this web application checks the spelling of all of the text.

As the spell checking application checks words, the DataSet is updated with
any corrected words. So at the end of the spell checking the DataSet no
longer contains just the original text blocks. I have now found out that the
SqlDataAdapter.UpdateCommand will not work - the data adapter must have the
original DataSet. I have constructed my SqlUpdateCommand with my own UPDATE
statements, parameters, etc.

When I try to run the UpdateCommand on the SqlDataAdapter, an exception is
raised stating that I have not used the SELECT command on the DataAdapter -
the DataAdapter from the initial SELECT was Disposed so I created a new one.

So, if my Sql method that originally created the DataAdapter and DataSet
returned the DataAdpater instead of the DataSet, is there still an active
connection to Sql Server?

If the connection is closed, will it work if I maintain the state of the
DataAdapter (and so the DataSet it filled), and thus use the .UpdateCommand
in the end?

Is there a better way to do this without recreating the original DataSet at
the end and merging the original and updated?

Thank you again for your time.

**************************

"Lateralus [MCAD]" wrote:
I figured that since you know how to expose your arraylist, you can expose
your dataset and/or dataview through a public property.

protected DataSet _dataSet = null;

public DataSet MyDataSet
{
get{return(this._dataSet);}
set{this._dataSet = value;}
}

public DataView MyView
{
get{return(this._dataSet.Tables[0].DefaultView);}
}

--
Lateralus [MCAD]
"ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
news:45**********************************@microsof t.com...
The main reason is because I'm not familiar with Microsoft programming
languages and Visual Studio. I've been working in Java, Delphi and Pascal
and
a completely different architecture for some years. C# is no problem but I
find ASP.Net to be a completely different beast.

"Lateralus [MCAD]" wrote:
Is there any reason why you just don't expose the DataSet/DataView from
the
business object. As far as how to bind it, all you have to do is set the
datasource in the code behind to your DataSet/DataView/ArrayList and call
DataBind();

protected System.Web.UI.WebControls.Repeater myRepeater;

private void Page_Load(object sender, System.EventArgs e)
{
//your code to load your business object

this.myRepeater.DataSource = put your array list object here;
this.myRepeater.DataBind();
}

--
Lateralus [MCAD]
"ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
news:FC**********************************@microsof t.com...
>I have one more question: How do I get to the data in the ArrayList?
>
> What I have is an ArrayList (parent), where each field is another
> ArrayList
> (children). Each child holds a row returned from a recordset. The class
> object has methods where an index (int), is passed in and the
> corresponding
> child data returned. For example, say each row contains a comment id,
> comment
> text and response text. Calling ".getComment(index)" where index = 5,
> returns
> the comment text from the fifth ArrayList or row.
>
> Most of the examples I have found show Repeater with and XML file.
> ArrayList
> examples show the ArrayList as part of the .aspx file.
>
>
>
> "Lateralus [MCAD]" wrote:
>
>> No problem. Glad to help.
>>
>> --
>> Lateralus [MCAD]
>>
>>
>> "ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
>> news:66**********************************@microsof t.com...
>> >I found by exposing the ArrayList(s) from the middle-tier objects,
>> >the
>> >aspx
>> > page can bind the Repeater to it.
>> >
>> > Thank you for your help.
>> >
>> > "Lateralus [MCAD]" wrote:
>> >
>> >> 1.) A Datagrid is a little simpler to use because it is basically a
>> >> single
>> >> table, with a row for every row in the list. A repeater is when you
>> >> need
>> >> to
>> >> customize the html a bit more. It sounds like you want a <table>
>> >> for
>> >> every
>> >> row in the array list. So it sounds like a repeater would suit you
>> >> better.
>> >>
>> >> 2.) I usually bind by repeaters/grids to a DataView. The DataSource
>> >> can
>> >> be
>> >> any System.Collections.IEnumerable derived object such as a
>> >> System.Data.DataView for accessing databases, an
>> >> System.Collections.ArrayList, a System.Collections.Hashtable, or an
>> >> array.
>> >>
>> >> HTH
>> >>
>> >> --
>> >> Lateralus [MCAD]
>> >>
>> >>
>> >> "ASP Yaboh" <AS******@discussions.microsoft.com> wrote in message
>> >> news:88**********************************@microsof t.com...
>> >> > Two questions on that:
>> >> >
>> >> > 1. Do I need to use the DataGrid with the Repeater?
>> >> >
>> >> > 2. Binding to the data leaves me a little confused. The database
>> >> > is
>> >> > on
>> >> > another tier and is only accessible through separate business
>> >> > objects.
>> >> > These
>> >> > objects then expose the data where they might be held e.g. in
>> >> > ArrayLists.
>> >> > I
>> >> > can not create a connection from the .aspx page directly to a
>> >> > database
>> >> > connection. Can I bind to other "objects"?
>> >> >
>> >> > Again, thank you for your time.
>> >> >
>> >> > "Lateralus [MCAD]" wrote:
>> >> >
>> >> >> I think you'll find that using Repeaters/DataGrids are much
>> >> >> cleaner
>> >> >> and
>> >> >> simpler than looping through the code manually. Plus it has
>> >> >> better
>> >> >> performance.
>> >> >>
>> >> >> --
>> >> >> Lateralus [MCAD]
>> >> >>
>> >> >>
>> >> >> "Lateralus [MCAD]" <dnorm252_at_yahoo.com> wrote in message
>> >> >> news:OG**************@tk2msftngp13.phx.gbl...
>> >> >> > Have you looked into using a repeater control?
>> >> >> >
>> >> >> > --
>> >> >> > Lateralus [MCAD]
>> >> >> >
>> >> >> >
>> >> >> > "ASP Yaboh" <AS******@discussions.microsoft.com> wrote in
>> >> >> > message
>> >> >> > news:80**********************************@microsof t.com...
>> >> >> >>I have an ArrayList of data gathered from a database. I want
>> >> >> >>to
>> >> >> >>create
>> >> >> >>a
>> >> >> >>web
>> >> >> >> page from this data by creating a <table>, each cell in each
>> >> >> >> row
>> >> >> >> displays
>> >> >> >> the
>> >> >> >> appropriate data. One of those cells in each row needs a
>> >> >> >> <textarea>
>> >> >> >> control.
>> >> >> >>
>> >> >> >> The background supporting classes are completed, the only
>> >> >> >> task
>> >> >> >> left
>> >> >> >> now
>> >> >> >> is
>> >> >> >> to create the web page. I am at a loss on how to create the
>> >> >> >> table
>> >> >> >> in
>> >> >> >> the
>> >> >> >> page
>> >> >> >> populated by the data. Previously, I would have just iterated
>> >> >> >> through
>> >> >> >> the
>> >> >> >> data placing the data in the cells on the HTML page by <%=
>> >> >> >> %>.
>> >> >> >>
>> >> >> >> Any help would be appreciated.
>> >> >> >> Thank you.
>> >> >> >
>> >> >> >
>> >> >>
>> >> >>
>> >> >>
>> >>
>> >>
>> >>
>>
>>
>>


Nov 18 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

24
by: jason | last post by:
Hi Ray...a while ago you explained an elegant solution to enable me to CREATE and EDIT existing tables and queries inside my online access 2000 database.... could you provide refresher links on...
55
by: Ton den Hartog | last post by:
Stupid basic question but I find it horribly imposible to find the answer elsewhere... :-( I want to have a piece of text in my HTML page and want to be able to change it in a Javascript...
4
by: Chamomile | last post by:
does anyone know if its possible to full-justfy text in a <textarea>? I can do left and right justify and center with a simple style declaration, but can't find any reference anywhere to a full...
8
by: Margaret MacDonald | last post by:
I'm a js novice trying to teach myself. I'm using Flanagan's 'Javascript, the definitive guide' from O'Reilly as a text. But either I'm dopier than usual or its layout doesn't match my learning...
5
by: spectre | last post by:
Hi, I need to copy/paste texts form word, notepad... to an html textarea to store it into a database. With the <pre>tag, and a text with long lines, the text displayed in the textarea needs...
6
by: Chris Fink | last post by:
Does anyone know it is possible to include a small image(.gif .jpeg) within a <SELECT><option> so that the user would see the option text as well as a little image(icon) in the option? I know this...
1
by: five of nothing | last post by:
Hi, I'm working on a page and my HTML validator whines when I try to put a <div></div> or a <table></table> inside of an <a></a> tag. What are the rules as far as what can go in there?
5
by: Icarus - iD_Ten_T helper | last post by:
First of all, my apologies if this should be in a php newsgroup and not here, but I thought this the best place to start. I want to parse the text from a <textareaform element but when I pass...
2
by: markszlazak | last post by:
I'm a relatively slow response of table cells changing their background color with mouseover/our in IE6 (Win 2K) but the response is fine (fast) in Firefox. Why? The code is below. Sorry about the...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.