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 derfloh 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

    ...search criteria dbwhere = &quot;&quot; Session(&quot;dbwhere&quot;) = dbwhere End If End If %> <% strsql = &quot;select * from [Customer]&quot; If dbwhere <> &quot;&quot; Then strsql = strsql & &quot; WHERE &quot; & trim(dbwhere) End If if OrderBy <>...
  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?

    ...Request.Querystring(&quot;VendorNumber&quot;)<> &quot;&quot; then myVar1=Request.Querystring(&quot;VendorNumber&quot;) strsql = &quot;select * from [vendorind] where VendorNumber =&quot;&myVar1&&quot;&quot; If dbwhere <> &quot;&quot; Then strsql = strsql & &quot; WHERE &quot; &...
  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

    ...= arrCustomerInfo(1) strFirstName = arrFirstNameInfo(1) strLastName = arrLastNameInfo(1) strsql = &quot;select * from Customer WHERE CUSTOMERNUMBER=&quot; & numCustomerNumber & &quot;&quot; 'response.write strsql set rs =...
  14. danieljoo

    Loop through records

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

    Loop through records

    ...= arrCustomerInfo(1) strFirstName = arrFirstNameInfo(1) strLastName = arrLastNameInfo(1) strsql = &quot;select * from Customer WHERE CUSTOMERNUMBER=&quot; & numCustomerNumber & &quot;&quot; set rs =...
  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

    ...= Request.Querystring(&quot;AttendeeFirstName&quot;) MyVar3 = Request.QueryString(&quot;AttendeeLastName&quot;) 'MyVar4 = Request.QueryString(&quot;Orderby&quot;) end if strsql = &quot;select * from Customer WHERE CUSTOMERNUMBER=&quot; & myVar1 &...
  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