3
Answers

How to read value of control added to asp.net table cell

John O Donnell

John O Donnell

21y
23.8k
1
Heres one that i cant resolve Assume I create a table on a web form programatically. In one cell on the form I add a checkbox control. This is all fine. Now i want to push a button and retrieve whether the checkbox is checked or not. I cannot find a way to read the value of the check box? Note i added the checkbox using this code cell3.Controls.Add(checkbox); all good but now when doing a foreach through the tables rows and columns i know column three has a checkbox...just cannot find a way to reference it?
Answers (3)
2
Nitin Sontakke

Nitin Sontakke

NA 11.7k 2.2k 8y
Separate table is a good idea. But about "creating records in it as soon as product request is created", I am not so sure about.
 
My suggestion:
 
t1 - product request : insert record as soon as product request is created. 
 
t2 - product request approvals : a set of 10 records which indicate which approvals must be obtained. Note that this table DOES NOT have record for actual approval received.
 
t3 - product request approvals received : again a set of 10 records which indicate that approvals actually received. There may be 0 records at the beginning but insert each record as approval is received. This has who approved, when approved, comments, etc.
 
t4 - Optional - auditing of t3 table. In this log each change in t3 (insert update delete of t3) Who gave approval and then revoked it, etc. 
 
The benefit of above approach is you can select records from  t2 left outer join with t3 and know pending approvals. I am sure you will need it some time. Note that t2 is just a template table. This approach protects you from increase / decrease in number of approvals.
 
 
Accepted
0
Nitin Sontakke

Nitin Sontakke

NA 11.7k 2.2k 8y
Thanks!
 
Feel free to ping for any other question(s) you have face in the process. 
0
Bennie

Bennie

NA 6 0 8y
Thank you Nitin.  The missing link for me was the Left Outer Join and inserting after approval.  You have cleared things up.  
 
9 years ago I was just getting started as an independent consultant and was hopeful to pick up as a programmer.  Consulting opportunities directed me in other areas, BA and Systems admin.  I now have the fortune to implement small projects that are mostly data capture and reporting.  A great opportunity to learn.
 
Thanks again
 
 
0
Nitin Sontakke

Nitin Sontakke

NA 11.7k 2.2k 8y
Somehow it surprises me that you ask your first question after full 9 years after becoming member of this forum.