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. danieljoo

    making website more dynamic

    thanks, that is amazingly helpful.
  2. danieljoo

    making website more dynamic

    I would like to make my website more dynamic/easier to maintain. I have a main menu on my website with links like Products and Services. These main menu items when clicked on, will display thier own submenu items. These submenu items may change over time. Since each submenu page also...
  3. danieljoo

    GetFileName

    I would like to make my website more dynamic/easier to maintain. I have a main menu on my website with links like Products and Services. These main menu items when clicked on, will display thier own submenu items. These submenu items may change over time. Since each submenu page also...
  4. danieljoo

    Text in Front of Movie

    I have a movie with the following 3 layers (in order): 1. Text Layer 2. Movie Layer 3. Picture Layer I have a transparent movie playing over top of a picture and then I have a Text layer that should be on top of the movie layer. For some reason when I test the movie, the text layer appears...
  5. danieljoo

    total column in table

    Oops, title should be total rows.
  6. danieljoo

    total column in table

    how do I total rows in a table? ex. ID EventA EventB EventC Total 1 50 10 20 80 2 0 10 20 30
  7. danieljoo

    Remove Zero(s) from Search

    How can I remove zeros in my search? ie search for &quot;000103&quot; returns &quot;103&quot;. Here is my search code: <% ' Get search criteria for basic search pSearch = trim(Request.QueryString(&quot;psearch&quot;)) If pSearch <> &quot;&quot; Then pSearch =...
  8. danieljoo

    Stop Zero Suppression ASP/Access

    Is there anyway to stop zero suppression in ASP and/or Access? I need to enter six digit numbers with leading zeroes, ie &quot;000103&quot;.
  9. danieljoo

    Set querystring to session?

    Lots of reading, answer might not be that hard...I am currently working on a set of asp pages that allows my company to keep track of vendors that are attending our meetings. The default asp page allows the user to either go directly to a: 1. link that displays all individual vendors...
  10. danieljoo

    Compare Querystring Value with Number

    Ooops, got it to work with the trim(). Thank you very much onpnt.
  11. danieljoo

    Compare Querystring Value with Number

    I tried this <%response.write trim(myVar1) & &quot; &quot; & trim(x_CustomerNumber)%> and <%response.write myVar1 & &quot; &quot; & x_CustomerNumber%> for both I got this (the first set should be equal): 1 1 1 3
  12. danieljoo

    Compare Querystring Value with Number

    I have some asp that allows me to click on a CustomerName to see more detailed information about that Customer Grp. ie CustomerNumber CustomerName Grp 1 Joes Store W23 2 Quick Stop 3 Joes Store #2...
  13. danieljoo

    Loop through records

    Several people have told me to just add the do while not rs.EOF, code and then rs.movenext loop, but its not working. No errors, shows the first record and does not loop. Notice the response.write arrPostedCheckValue in the code. Here is sample output with 2 records checked (note the first...
  14. danieljoo

    Loop through records

    basically need to loop through what is in the <table>
  15. danieljoo

    Loop through records

    I need help to loop through a set of records that have been &quot;checked&quot; for printing. <% 'Open Connection to the database set conn = Server.CreateObject(&quot;ADODB.Connection&quot;) conn.Open xDb_Conn_Str dim arrPostedCheckValue...
  16. danieljoo

    Send hidden rs fields if checkbox is true

    sorry, forgot to add the hidden fields. But still once I added them , it went through and selected all AttendeeFirstNames and all AttendeeLastNames that matched that CustomerNumber
  17. danieljoo

    Send hidden rs fields if checkbox is true

    oops, also tried with adding this to the first part of the if statement. MyVar1 = Request.Querystring(&quot;CustomerNumber&quot;)
  18. danieljoo

    Send hidden rs fields if checkbox is true

    A little background...the user has two possible ways to select information for printing, one is from a print icon next to each listing or a checkbox (as stated above) that allows the user to select what they what to print, here is what I have done with the code above, not quite working...
  19. danieljoo

    Send hidden rs fields if checkbox is true

    I don't think I can do the javascript function with the rs's, is there another way? I need to send the hidden fields if AttendeeFirstName is checked. <script type=&quot;text/javascript&quot; language=&quot;JavaScript&quot;> <!-- function hiddenfields() { if (...
  20. danieljoo

    Querystring and Send Multiple

    please someone answer.

Part and Inventory Search

Back
Top