Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rleffew1

    Problem with Form Checkbox (Multiple Checkbox with Same Name)

    Thanks Sheco, Your following code got me in the right direction. I appreciate yours and everyones help. MyArray = Split(Request.Form("pet") , ",") For i = LBound(MyArray) To UBound(MyArray) Response.Write "You might like a pet " & MyArray(i) & ".<BR>" Next Bob Leffew
  2. rleffew1

    Problem with Form Checkbox (Multiple Checkbox with Same Name)

    Thanks for everyones help. I read up some and figured out the following solution ***************************************************** Code for building multiple checkboxes with same name. ***************************************************** If (Not MyRs.BOF) AND (Not MyRs.EOF) Then...
  3. rleffew1

    Problem with Form Checkbox (Multiple Checkbox with Same Name)

    Do you have another approach I could take. The only way I see how to do this is simply pull up every student master file and update from there. I was trying to keep from doing this. But you are right, the dilema has been the check boxes corresponding to the student ids. Is there a way to do...
  4. rleffew1

    Problem with Form Checkbox (Multiple Checkbox with Same Name)

    I have seen where this has been sort of asked in other threads. But couldnt find a difinitve answer. I have created a form with a table inside. The table is populated by a Access database based on User input from a previous page. I don't know how many rows of data because this will depend on...
  5. rleffew1

    Problem with Form Checkbox (Multiple Checkbox with Same Name)

    tsdragon, I have been searching for a way to take care of my problem. I also do ASP and VB. I know how to program. I have never had to use a form in this manner. I am trying to keep the user from having to go to each users master record to make the change. Its easier for the user to have...
  6. rleffew1

    Problem with Form Checkbox (Multiple Checkbox with Same Name)

    This what I am having a hard time figuring out is the how to read thru the form once I have submitted it. If a checkbox is not check nothing shows up. Example? studendID being a hidden field. studentid checkbox1 has a check checkbox2 has a check studentid checkbox1 no check...
  7. rleffew1

    Problem with Form Checkbox (Multiple Checkbox with Same Name)

    I am not familiar with JS. I do ASP.VbScript. I just know I cannot do what I want to in ASP. Do you understand the problem I have? If so any suggestions on how to solve. I am hoping using JS can help. I am open to any approach. Problem is I cant read a form as is. Thanks, Bob LeffewHome
  8. rleffew1

    Problem with Form Checkbox (Multiple Checkbox with Same Name)

    This is hard for me to explain. If you look at my page I have created I can use this as a reference point. http://www.gvsdc.org/online/userClassFINAL.asp I have created a form with a table inside. The table is populated by a Access database. According to User input from a previous page I...

Part and Inventory Search

Back
Top