IIS ASP - Looping through table data on form.submit

This is Interesting: Free IT Magazines  
Home > Archive > IIS ASP > May 2007 > Looping through table data on form.submit





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author Looping through table data on form.submit
g

2007-05-29, 7:22 am

Hi Guys..

i know this might sound really really simple, but I'm kinda stuck..I
have this form..which has a table (created from stored procedure
values)..once the table is populated..i have some radio buttons (for
each row of the table) and a main submit button.

On clicking submit..i want to loop through the table..pick up the
first <TD> being the user ID and the value of the radio button clicked
(currently I have my radio button ID set as UserID_0, UserID_1 ..
etc). And pass those into a stored procedure..

Any help would be great...thanks!

Cheers,
Gravity.

Evertjan.

2007-05-29, 7:22 am

g wrote on 29 mei 2007 in microsoft.public.inetserver.asp.general:
> i know this might sound really really simple, but I'm kinda stuck..I
> have this form..which has a table (created from stored procedure
> values)..once the table is populated..i have some radio buttons (for
> each row of the table) and a main submit button.


Do you mean a html table in a form?

If so. what is serverside [ASP] about it?

>
> On clicking submit..i want to loop through the table..pick up the
> first <TD> being the user ID and the value of the radio button clicked
> (currently I have my radio button ID set as UserID_0, UserID_1 ..
> etc). And pass those into a stored procedure..


Yes Your Q seems a browser thing,
ASP knowing nothing about html forms, tables and radio butttons.

How to use the DOM programmatically is more something
for a clientside javascript NG, like comp.language.javascript.

Or do you want to know what to do on the srver with the submitted data?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
g

2007-05-29, 7:22 am

Well lets put it this way, I have an ASP page..it loads up..reads data
from a database/ executed stored procedure..runs its loops on it..and
created an HTML table full of data. This HTML table also has a bunch
of radio buttons at the end.

The user selects 1 radio button on each row..and clicks a button
called Submit. On the button Submit..I call form.submit on it (unless
there's something better)...the action of the form (that holds the
table) is post and it appends &Update=1 in the URL..and reloads the
form.

On this reload..i check if I'm getting Update=1, if I am..then I want
to read all the values of the TD's and put them in a database
(including what they chose in the radio button).

Does this make sense? I believe this is something that I need to
trigger on client side and complete on server side.

Thanks a bunch for your help.


On May 29, 5:12 pm, "Evertjan." <exjxw.hannivo...@interxnl.net> wrote:
> g wrote on 29 mei 2007 in microsoft.public.inetserver.asp.general:
>
>
> Do you mean a html table in a form?
>
> If so. what is serverside [ASP] about it?
>
>
>
>
> Yes Your Q seems a browser thing,
> ASP knowing nothing about html forms, tables and radio butttons.
>
> How to use the DOM programmatically is more something
> for a clientside javascript NG, like comp.language.javascript.
>
> Or do you want to know what to do on the srver with the submitted data?
>
> --
> Evertjan.
> The Netherlands.
> (Please change the x'es to dots in my emailaddress)



Evertjan.

2007-05-29, 7:22 am

Gravity wrote on 29 mei 2007 in microsoft.public.inetserver.asp.general:

[Please do not toppost on usenet !!!!!!!!!!]

I wrote:
[vbcol=seagreen]
> Does this make sense? I believe this is something that I need to
> trigger on client side and complete on server side.


No it does not really.

> Well lets put it this way, I have an ASP page..it loads up..reads data
> from a database/ executed stored procedure..runs its loops on it..and
> created an HTML table full of data. This HTML table also has a bunch
> of radio buttons at the end.


I hope you sensibly named all the to-be-posted fields,
be it input/text or input/radio. Whether they are put in a html table or
just divided by <ol><li> or <br> constructs is not important to the
submission capacities of a form.

ASP loops can easily do that.

Do you have a Q about this part?
[Please add a strippped version of your ASP code if so]

> The user selects 1 radio button on each row..and clicks a button
> called Submit. On the button Submit..I call form.submit on it (unless
> there's something better)...the action of the form (that holds the
> table) is post and it appends &Update=1 in the URL..


This seemed to be the clientside code you asked about and for which this
NG is not the right place.

> and reloads the form.


Reloads the "page"?
[A form is a clientside html element]

> On this reload..i check if I'm getting Update=1, if I am..then I want
> to read all the values of the TD's and put them in a database
> (including what they chose in the radio button).


You do not need the Update=1, as ASP can easily see if the page request
includes POST/request.form() [or even GET/request.querystring()] data.

Simple serverside ASP work, you have a Q about this?
[Please add a strippped version of your ASP code if so]

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
g

2007-05-29, 7:22 am

On May 29, 6:01 pm, "Evertjan." <exjxw.hannivo...@interxnl.net> wrote:
> Gravity wrote on 29 mei 2007 in microsoft.public.inetserver.asp.general:
>
> [Please do not toppost on usenet !!!!!!!!!!]
>
> I wrote:
>
> No it does not really.
>
>
> I hope you sensibly named all the to-be-posted fields,
> be it input/text or input/radio. Whether they are put in a html table or
> just divided by <ol><li> or <br> constructs is not important to the
> submission capacities of a form.
>
> ASP loops can easily do that.
>
> Do you have a Q about this part?
> [Please add a strippped version of your ASP code if so]
>
>
> This seemed to be the clientside code you asked about and for which this
> NG is not the right place.
>
>
> Reloads the "page"?
> [A form is a clientside html element]
>
>
> You do not need the Update=1, as ASP can easily see if the page request
> includes POST/request.form() [or even GET/request.querystring()] data.
>
> Simple serverside ASP work, you have a Q about this?
> [Please add a strippped version of your ASP code if so]
>
> --
> Evertjan.
> The Netherlands.
> (Please change the x'es to dots in my emailaddress)


No..I think I'm okay..I'll try it out and see if I can get it to
work!

Thanks!

Jon Paal [MSMD]

2007-05-29, 1:21 pm

You don't loop through a table, you need to obtain the form values through the request object.

You can read about "Processing Form Information" here:

http://msconline.maconstate.edu/tut...ASP/default.htm



"g" <vtgravity@gmail.com> wrote in message news:1180419645.887783.34810@j4g2000prf.googlegroups.com...
> Hi Guys..
>
> i know this might sound really really simple, but I'm kinda stuck..I
> have this form..which has a table (created from stored procedure
> values)..once the table is populated..i have some radio buttons (for
> each row of the table) and a main submit button.
>
> On clicking submit..i want to loop through the table..pick up the
> first <TD> being the user ID and the value of the radio button clicked
> (currently I have my radio button ID set as UserID_0, UserID_1 ..
> etc). And pass those into a stored procedure..
>
> Any help would be great...thanks!
>
> Cheers,
> Gravity.
>



Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com