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 Mike Lewis 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. funkydonkey2000

    RequiredFieldValidator validating multiple controls

    I try your method, I had to make all my RequiredFieldValidator controls to be EnableClientScript="false". But how do I get ValidationSummary to only display one error message instead of all error message from all RequiredFieldValidator. Maybe I have to write my own javascript alert popup.
  2. funkydonkey2000

    RequiredFieldValidator validating multiple controls

    I was just wondering is it possible to assign a single RequiredFieldValidator to validate multiple controls. The reason I want to do this is because I have 10 text boxes, and I want to check if they are all filled in. If either just one box is empty or all boxes are empty, I want to just have...
  3. funkydonkey2000

    Posting information to a asp page without going to it

    Well is like this. I have a form for a user to enter their email. When submited, I want to go to success.asp page. In the form there is also a checkbox to subscribe to a mailing list. If the checkbox is checked, I have to pass the email to addtomailinglist.asp page sitting on another server...
  4. funkydonkey2000

    Posting information to a asp page without going to it

    Usually when you post information from a form to another asp page like this: <form method="post" action="someASPPage.asp"> It will redirect you to 'someASPPage.asp'. I was wondering if there is a way of posting information from a form to another asp page, but not actually going to that asp page.
  5. funkydonkey2000

    radio button with onclick

    Just wondering if you want your page to do something immediately when the user click on one of you radio buttons on your form, do you have to add a onclick attribute to all your radio button tags. such as this <input type='radio' name='radioName' value='0' onclick=javascript:somefunction>0<br>...
  6. funkydonkey2000

    inspecting an object

    Hello There. Just wondering if there is a way to list all the methods of an object? For example: dim myobject : myoject = Server.CreateObject("someObject") dim method for each method in myobject response.write method next but this deosn't work. Thanks Tony
  7. funkydonkey2000

    array withiin a array

    I did some testing. If I do: dim outerArray(2) dim innerArray(2) innerArray(0) = &quot;donkey&quot; outerArray(0) = innerArray response.write outerArray(0)(0) It works, it prints out &quot;donkey&quot; cool, I never knew this
  8. funkydonkey2000

    array withiin a array

    can you put an array within an array. For example: dim outerArray(2) dim innerArray(2) innerArray(0) = &quot;donkey&quot; outerArray(0) = innerArray response.write outerArray(0,0) I get &quot;Subscript out of range&quot; anybody know why? or is this not possible
  9. funkydonkey2000

    exiting multiple nested loops

    cool. What if I have like 10 layers of nested loops, that will be trouble
  10. funkydonkey2000

    exiting multiple nested loops

    Just wondering if there are any ways of exiting multiple nested loops. for example: do while i<10 do while j<10 exit do loop loop the exit loop in the above only exit the inner loop, is there a way to exit both loops.
  11. funkydonkey2000

    variable referencing

    excellent, thanks fot that bullschmidt
  12. funkydonkey2000

    variable referencing

    I was just wondering if it is possible to evaluate a string into a object/variable name such as in javascript and flash actionscript with eval(). etc in actionscript: var objectname = &quot;car&quot;; // the next line will call the car's method &quot;speed()&quot;; // same as writing...

Part and Inventory Search

Back
Top