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: *

  • Users: hiteshkapadia
  • Order by date
  1. hiteshkapadia

    submit a form from a subroutine, with no button

    You can submit the page using javascript without the user intervention. After running your subroutine, just right following javascript code: <script langauge=&quot;javascript&quot;> document.forms[0].action=&quot;somefile.asp&quot;; document.forms[0].submit(); </script>
  2. hiteshkapadia

    help this beginner

    The DBQ path you are using in the connection string for DBO will be different for your server where you have hosted your site. Try using the Request.ServerVariables (&quot;APPL_PHYSICAL_PATH&quot;) and then concat the remaining folders to this path to access the database .mdb you are trying to...
  3. hiteshkapadia

    RecordCount Problem

    What database are you using? Try to run the query directly in the database and see if you still get 0 or some other value. Hitesh
  4. hiteshkapadia

    using querystring across windows.

    You can use the querystring exactly the way you have used in normal situations. Hitesh
  5. hiteshkapadia

    Drop down list

    No. Still you can try typing 'C' & 'O' immediately with no gap in between. This might work. Thanks Hitesh
  6. hiteshkapadia

    cannot update properly.

    That is because you are not trying to update a particular record. Everytime you are updating only first record. If you want to update all the records, run it in the loop or use SQL update query rather than using Recordset's update method. Hope this helps Thanks Hitesh
  7. hiteshkapadia

    Refresh Page Based on Click In DropDown Box

    To do it on the client-side using javascript, you can create different arrays for different values, & then based on the value selected in the drop down box, you can load a particular array in the drop down using the javascript. Hitesh
  8. hiteshkapadia

    How to change the lenght!

    Hi, You can write the size attribute for the text box Hitesh

Part and Inventory Search

Back
Top