Posted on: 4/29/2015 6:36:20 PM | Views : 644

Been trying to do this thing for a week now but somehow none of the answers I found seem to fix my case - so wondering what I might be missing (I'm new to asp.net so sorry for any blatant mistakes).
I am attempting at creating a control system where users can order new supplies.
I have two pages with two gridviews.
In gridview #1 I have all the current supplies, their stock and a quantity textbox where the admin can type the amount they need and then add it to a "List" (gridview #2). This is done with sessions, so it adds to a session and then I bind that session to gridview #2.
<ItemTemplate> <asp:Label ID="lblStock" runat="server"></asp:Label> </ItemTemplate> <ItemTemplate> <asp:TextBox ID="txtQuantity" runat="server" Text="1"></asp:TextBox> ...

Go to the complete details ...