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 strongm 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. bipink

    Pass variables via POST

    Hi Drexor, Thanks for the reply once again. But the link http://24.124.64.25/samplecode/page1.asp is not working. On reading your reply, I infer that my idea of keeping hidden boxes is the only way to go. You too I guess have suggested the same but ur way of creating the hidden boxes is...
  2. bipink

    Pass variables via POST

    Dear DreXor, Thanks for your reply. But actually I think u got my problem wrong. Maybe I wasn't clear. What I am eager to know is what is the best way to access (know) the values of text boxes on page1.asp when I am in page3.asp. My route is page1.asp -> page2.asp -> page3.asp Is this the only...
  3. bipink

    Passing variables question

    Hi everyone, Is it possible to pass only variables bt. ASP pages. I have 3 asp pages. In page1.asp, I have a text box text1. When I submit this page, in page2.asp I use the contents of page1's text1 as var2= Request.form("text1") and on doing some db query, I get some value for text box text2...
  4. bipink

    Pass variables via POST

    No proble DreXor, take your time. thanks, bipin
  5. bipink

    Pass variables via POST

    Dear DreXor, Can you please explain/elaborate ? I didn't understand properly. Thanks, bipin
  6. bipink

    Pass variables via POST

    Hi everyone, Is it possible to pass only variables bt. ASP pages. I have 3 asp pages. In page1.asp, I have a text box text1. When I submit this page, in page2.asp I use the contents of page1's text1 as var2= Request.form("text1") and on doing some db query, I get some value for text box text2...
  7. bipink

    2 radio, 1 list box - form reload

    Hi Mr. Schmidt, Is this a javascript function or asp ? Because I use following in a javascript function to make the combo box visible on click of 2nd button: document.getElementById('sArea3id').style.visibility = "visible"; How do I change it back within my ASP ? Thanks, Bipin
  8. bipink

    2 radio, 1 list box - form reload

    Hi everyone, Please anyone suggest me how to do this: I have 2 radio buttons. When the user clicks on 2nd radio button, a selection box (combo box) is shown. This means that first time when the page loads, the combo box is hidden. I am using style:hidden for the visibility. When user clicks on...
  9. bipink

    2 radio, 2 select box - ADO

    Hi all, Can any one suggest me how to accomplish this: In page1.asp, I have 2 radio buttons in form1, one select box (size 1, to make it menu) in form2 and other select box (size 10) in form3. Now, the user can click on either the radio buttons or select box (size 1). When they do so, I am...
  10. bipink

    radio button choice populates selection box

    Hi mwolf00, It worked fine. Actually I had named the submit button "submit" also, so it wasn't working. I have another question, what design should I use if I want the user to select one of the 4 radio buttons and then choose a drop-down box. And based on those selection, a query is generated...
  11. bipink

    radio button choice populates selection box

    Hi mwolf00 , Can you please tell me why this doesn't work ? It gives an error. <html> <body> <form action="test.html" method="post"> <input type="radio" name="bipin" onclick="this.form.submit()">radio1<br> <input type="radio" name="bipin" >radio2<br> <input type="submit" value="Submit"...
  12. bipink

    radio button choice populates selection box

    Hi mwolf00, Please tell me this, its related. Is it that whenever we do server calls (even just for populating the list box), the page reloads ? Also, how do I submit a form by clicking on a radio button and/or a selection box. I don't want to press any submit button. Thanks a lot, Sincerely...
  13. bipink

    radio button choice populates selection box

    Hi mwolf00, Thank you for the help. Can you please elaborate a bit on the code. Also, can you tell me the loadSelect function gets called on the onclick even of the radio button, right ? Another ques, isn't what we are doing here in the code, loading all the query records into the different...
  14. bipink

    radio button choice populates selection box

    Hi everyone, Can someone please suggest me how to solve this problem: I need to have a form which has 4 radio buttons and based on the choice of button selected I need to populate a selection box (in the same page, next to the buttons) from different tables in the database. So, basically...

Part and Inventory Search

Back
Top