for each loop javascript output ASP

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • bunnyman

    for each loop javascript output ASP

    I have a for each loop in javascript, of which I need to output to an
    ASP array. unfortunantly not too familiar with javascript..

    the loop is for items ordered in a shopping cart. they are displayed
    as rows of a table. all i need to do is get the same data into an ASP
    array to use on the next page, specificaly the +theitem+ and
    +thenumber+ variables.

    i can pass any one variable like this:
    document.writel n('<INPUT TYPE="hidden" NAME="itemName"
    VALUE="'+theite m+'" SIZE="40">');

    but need a way to get them all. thanks for any help!
    -smhh

    the javascript loop:

    for (var i = 0; i <= fulllist.length ; i++) {
    if (fulllist.subst ring(i,i+1) == '[') {
    thisitem = 1;
    itemstart = i+1;
    } else if (fulllist.subst ring(i,i+1) == ']') {
    itemend = i;
    thequantity = fulllist.substr ing(itemstart, itemend);
    itemtotal = 0;
    itemtotal = (eval(theprice* thequantity));
    temptotal = itemtotal * 100;
    subtotal = subtotal + itemtotal;
    weighttotal = 0;
    weighttotal = (eval(theweight *thequantity));
    subweight = subweight + weighttotal;
    itemlist=itemli st+1;
    document.write( '<tr><td>'+theq uantity+'</td>');
    document.writel n('<td>'+thenum ber+'</td><td>
    '+theitem+'</td><td>'+thepri ce+'</td><td>'+alterE rror(itemtotal) +'</td></tr>');

    } else if (fulllist.subst ring(i,i+1) == '|') {
    if (thisitem==1) theitem = fulllist.substr ing(itemstart, i);
    if (thisitem==2) theprice = fulllist.substr ing(itemstart, i);
    if (thisitem==3) thenumber = fulllist.substr ing(itemstart, i);
    if (thisitem==4) theweight = fulllist.substr ing(itemstart, i);
    thisitem++;
    itemstart=i+1;
    }
    }
  • Brian Genisio

    #2
    Re: for each loop javascript output ASP

    bunnyman wrote:[color=blue]
    > I have a for each loop in javascript, of which I need to output to an
    > ASP array. unfortunantly not too familiar with javascript..
    >
    > the loop is for items ordered in a shopping cart. they are displayed
    > as rows of a table. all i need to do is get the same data into an ASP
    > array to use on the next page, specificaly the +theitem+ and
    > +thenumber+ variables.
    >
    > i can pass any one variable like this:
    > document.writel n('<INPUT TYPE="hidden" NAME="itemName"
    > VALUE="'+theite m+'" SIZE="40">');
    >
    > but need a way to get them all. thanks for any help!
    > -smhh
    >
    > the javascript loop:
    >
    > for (var i = 0; i <= fulllist.length ; i++) {
    > if (fulllist.subst ring(i,i+1) == '[') {
    > thisitem = 1;
    > itemstart = i+1;
    > } else if (fulllist.subst ring(i,i+1) == ']') {
    > itemend = i;
    > thequantity = fulllist.substr ing(itemstart, itemend);
    > itemtotal = 0;
    > itemtotal = (eval(theprice* thequantity));
    > temptotal = itemtotal * 100;
    > subtotal = subtotal + itemtotal;
    > weighttotal = 0;
    > weighttotal = (eval(theweight *thequantity));
    > subweight = subweight + weighttotal;
    > itemlist=itemli st+1;
    > document.write( '<tr><td>'+theq uantity+'</td>');
    > document.writel n('<td>'+thenum ber+'</td><td>
    > '+theitem+'</td><td>'+thepri ce+'</td><td>'+alterE rror(itemtotal) +'</td></tr>');
    >
    > } else if (fulllist.subst ring(i,i+1) == '|') {
    > if (thisitem==1) theitem = fulllist.substr ing(itemstart, i);
    > if (thisitem==2) theprice = fulllist.substr ing(itemstart, i);
    > if (thisitem==3) thenumber = fulllist.substr ing(itemstart, i);
    > if (thisitem==4) theweight = fulllist.substr ing(itemstart, i);
    > thisitem++;
    > itemstart=i+1;
    > }
    > }[/color]

    Your code is confusing, and I am not exactly sure what you are trying to
    accomplish. When passing values between a Web page and the server, it
    is often useful to do it in a single string, using a delimiter.

    If your values do not have spaces, you can use spaces, such as: "item1
    item2 item3" etc. If your values have spaces, pick a character that you
    know is not allowed in your values, such as ~. Something like this
    would work: "Item 1~Item 2~This is item 3~Item 4".

    In javascript, if your values are in an array:

    var x = new Array( "Item 1", "Item 2", "Item 3" );

    You can join them as a string like this:

    var y = x.join("~");

    This will produce a string in y that looks like this: "Item 1~Item
    2~Item 3"

    In Javascript, if you have a string that is delimted, you can split it
    into an array likewise like this:

    var z = y.split("~");

    This will create an array z that is identical to x.

    So, with that, you know how to use arrays to make a string, and
    vice-versa. You can do this to convert an array into a string, and put
    it in your hidden value. You can do this in Javascript, if you have a
    value that is like this:

    <INPUT TYPE=hidden NAME="itemName" VALUE="" ID="myHidden">
    <SCRIPT type="text/javascript>
    document.getEle mentById("myHid den").value = x.join("~");
    </SCRIPT>

    Assuming x is an array that you want to send to your ASP page.

    Then, on your ASP page, I know that VBScript has a the same join/split
    functionality. ASP/VBScript is out of the realm of this group.

    Good luck,
    Brian


    Comment

    • William Morris

      #3
      Re: for each loop javascript output ASP

      Bunnyman, you can't get there from here. Javascript is a client-wide
      technology, ASP is server side. The only way to pass your values to an asp
      page is through a querystring:

      document.locati on="mypage.asp? item1=shirt&ite m2=socks&item3= shoes"

      or through a form:

      <form action="mypage. asp" method="get">
      <input type=hidden name=item1 value="shirt">
      <input type=hidden name=item2 value="socks">
      <input type=hidden name=item3 value="shoes">
      </form>

      Once either happens, you can then process the values any way you like.


      --
      William Morris
      Semster, Seamlyne reProductions
      Visit our website, http://www.seamlyne.com, for the most comfortable
      historically inspired clothing you can buy!

      "bunnyman" <bunnyman@corsa d.net> wrote in message
      news:25bf14eb.0 404051341.1c7af 26c@posting.goo gle.com...[color=blue]
      > I have a for each loop in javascript, of which I need to output to an
      > ASP array. unfortunantly not too familiar with javascript..
      >
      > the loop is for items ordered in a shopping cart. they are displayed
      > as rows of a table. all i need to do is get the same data into an ASP
      > array to use on the next page, specificaly the +theitem+ and
      > +thenumber+ variables.
      >
      > i can pass any one variable like this:
      > document.writel n('<INPUT TYPE="hidden" NAME="itemName"
      > VALUE="'+theite m+'" SIZE="40">');
      >
      > but need a way to get them all. thanks for any help!
      > -smhh
      >
      > the javascript loop:
      >
      > for (var i = 0; i <= fulllist.length ; i++) {
      > if (fulllist.subst ring(i,i+1) == '[') {
      > thisitem = 1;
      > itemstart = i+1;
      > } else if (fulllist.subst ring(i,i+1) == ']') {
      > itemend = i;
      > thequantity = fulllist.substr ing(itemstart, itemend);
      > itemtotal = 0;
      > itemtotal = (eval(theprice* thequantity));
      > temptotal = itemtotal * 100;
      > subtotal = subtotal + itemtotal;
      > weighttotal = 0;
      > weighttotal = (eval(theweight *thequantity));
      > subweight = subweight + weighttotal;
      > itemlist=itemli st+1;
      > document.write( '<tr><td>'+theq uantity+'</td>');
      > document.writel n('<td>'+thenum ber+'</td><td>
      >[/color]
      '+theitem+'</td><td>'+thepri ce+'</td><td>'+alterE rror(itemtotal) +'</td></tr>
      ');[color=blue]
      >
      > } else if (fulllist.subst ring(i,i+1) == '|') {
      > if (thisitem==1) theitem = fulllist.substr ing(itemstart, i);
      > if (thisitem==2) theprice = fulllist.substr ing(itemstart, i);
      > if (thisitem==3) thenumber = fulllist.substr ing(itemstart, i);
      > if (thisitem==4) theweight = fulllist.substr ing(itemstart, i);
      > thisitem++;
      > itemstart=i+1;
      > }
      > }[/color]


      Comment

      Working...