Hi,
I'm hoping that somebody can help me out?!
What I am tring to do is compare values in a set of dynamically created textboxes (1 character per textbox) to data in a datagrid. The data is the result of a query, so it's being pulled from a database.
I hope I making sense?
Does anybody know of a solution to my problem?
The textboxes are held in a placeholder, and are generated depending on the value of the selected radioButton in a radioButtonList.
My coding for the textBoxes is as follows:
For ctr = 1 To No_Letters.SelectedValue Step 1
'Genereate Text Box
tmpTxtBox.ID = "txtBox" & ctr
'Add text box to placeholder
PlaceHolder1.Controls.Add(tmpTxtBox)
Next
I'd give you my SQL coding but it's FAR too long! I had thought about putting the relevant coding in the SQL but I reckon it wouldn't work, and that it would be too complicated to implement!
Is there a COMPARE attribute that I can use? Like DataGrid.Compare(txtBox.text)
Thanks in advance
Jane
I'm hoping that somebody can help me out?!
What I am tring to do is compare values in a set of dynamically created textboxes (1 character per textbox) to data in a datagrid. The data is the result of a query, so it's being pulled from a database.
I hope I making sense?
Does anybody know of a solution to my problem?
The textboxes are held in a placeholder, and are generated depending on the value of the selected radioButton in a radioButtonList.
My coding for the textBoxes is as follows:
For ctr = 1 To No_Letters.SelectedValue Step 1
'Genereate Text Box
tmpTxtBox.ID = "txtBox" & ctr
'Add text box to placeholder
PlaceHolder1.Controls.Add(tmpTxtBox)
Next
I'd give you my SQL coding but it's FAR too long! I had thought about putting the relevant coding in the SQL but I reckon it wouldn't work, and that it would be too complicated to implement!
Is there a COMPARE attribute that I can use? Like DataGrid.Compare(txtBox.text)
Thanks in advance
Jane