I am trying to provie a way to add or minus or just type the quantity of the desired product on my datatable so I'm thinking the best way is the add a text box or button in a column for each row. How could this be done? Or does anyone know a better way
I populate and create like so...
How could I create a column which holds buttons or text boxes and dynamically populate?
Would also love to know how to the image showing inthe gridview rather than the path, resolveUL doesn't work.
I populate and create like so...
Code:
dt.Columns.Add(new DataColumn("ImagePath", Type.GetType("System.String"))) row["ImagePath"] = ResolveUrl(url);
Would also love to know how to the image showing inthe gridview rather than the path, resolveUL doesn't work.
Comment