repeater control
-
hi Im having 2 repeater controls each of 3 text boxes created dynamiaclly... and a button to submit values of text boxs in both repeaters to db. keeping the 1st textbox value empty and if other two textboxs are filled and submitted it should show some error message.. this is same for both repeaters how can i do that....
-
hi Im having 2 repeater controls each of 3 text boxes created dynamiaclly... and a button to submit values of text boxs in both repeaters to db. keeping the 1st textbox value empty and if other two textboxs are filled and submitted it should show some error message.. this is same for both repeaters how can i do that....
textbox1 | textbox2 | textbox3 | button in a simple flow: when button click ( valid = true validate textbox1 validate textbox2 validate textbox3 if(valid) insert else message("one of ......") } MyDevBank.com
-
textbox1 | textbox2 | textbox3 | button in a simple flow: when button click ( valid = true validate textbox1 validate textbox2 validate textbox3 if(valid) insert else message("one of ......") } MyDevBank.com
-
MyDevBank wrote:
in a simple flow:
??? Both the repeater values to be inserted in single button click and it should be checked for each row of 2 repeaters this is my requirement.... this will not work by your explanation...
so i didnt got the right view of the UI you are describing can you describe it better ? MyDevBank.com
-
so i didnt got the right view of the UI you are describing can you describe it better ? MyDevBank.com
2 repeaters in page each repeater with 3 textboxs created dynamically and link button(Add more) to add inside repeater to add textboxs dynamically at the end of page submit button to insert the values to db. suppose i click on addmore button to add three rows of textboxs and values enterd into it and finally when i click on submit button then it should check the condition for each of rows in repeater if its is true then page redirected to other else error message should display... this is same for both repeaters...