Skip to content
Advertisement

Looping an SQL statement on razor

Attempted to create a ‘cart’ which holds selected items by the user but upon form completion, all the data from the ‘cart’ is inserted into one row

Example:

JavaScript

How do I separate the data into a row each?

Intended Result:

JavaScript

How it works:

  1. The user will click a button that will generate the following HTML codes.

(Javascript)

JavaScript

The input named FID is carrying a passed down value of the ID of the item selected by the user; The generated HTML code will be inserted into the form/cart. The user can’t add the same item but can modify the quantity (value of <input name="FQty"> ) using the <a id="dec"> and <a id="inc">.

  1. When the user completes their order, the following codes will be running

(C#)

JavaScript

(ASP.NET Web Pages)

JavaScript

What I’ve tried:

(ASP.NET Web Pages)

JavaScript

Results in inserting the first character of the ID.

Example:

JavaScript

Advertisement

Answer

If I understand correctly, your cart will have multiple fields of both <input name=FID> and <input name=FQty>, so that when the form is posted, Request.Form["FID"] and Request.Form["FQty"] will each be comma-separated lists? If so, maybe something like this will do the trick:

JavaScript

It’s a bit hard to understand with just the code you shared, but do let me know if I’m on the right track.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement