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 SkipVought 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. booboo0912

    Preload images retrieved from database?

    Server-side code...I'm pulling data from the database (using ASP) then building my image source tag based on data in the database to display the images. I'm not making any updates to the database (yet), just pulling the information. I hope I'm answering your question(s) correctly...I've been...
  2. booboo0912

    Preload images retrieved from database?

    Hi Dan! More than likely I am confusing server-side and client-side JS, but I'm just not sure how to go about doing this. [ponder] My database is on the server. Thanks for your help!
  3. booboo0912

    Contents of include file not displaying

    Thank you both for your replies! cmartin75, Why would I change my include to a virtual include? I'm not sure I understand. tyutghf, The extension of the main page is .asp.
  4. booboo0912

    Preload images retrieved from database?

    I don't really have my images in the database but just the image names (pic1.jpg). Depending on which id is passed to my page, the SQL statement selects all the image names for that id. I put an onload event in my body tag to call the following function, but the javascript seems to fire before...
  5. booboo0912

    Put data into 2 columns?

    Hello! I'm pulling data from a database and would like to make 2 columns instead of a scrolling list. I've done some searching on the internet and either I'm not searching the correct terms or else I'm the only one that doesn't know how to do this! :) Some of the scripts I've found put the...
  6. booboo0912

    Contents of include file not displaying

    Hello! I came across the thread - thread333-1225701 - which sounded like the issue my customer is having. I have an include <!-- #Include file="includes/div_tags.htm" --> in my .asp page, and when my customer views the web page on his computer (not through the internet but local IIS) he does...
  7. booboo0912

    question from complete newbie (know nothing)

    No problem...that's why we're here to help! A couple of things: 1)you need 2 form tags, one for the top form (form1), and one for the bottom (form2) 2)when you set the values for form2, make sure you specify that form name (you had form1 instead of form2)...
  8. booboo0912

    question from complete newbie (know nothing)

    put the onChange event in your input tag to call the function: <input type="checkbox" name="test" value="1" onchange="populateMe()"> HTH
  9. booboo0912

    Change font depending on which browser?

    Excellent! It works! Thank you very much!!
  10. booboo0912

    question from complete newbie (know nothing)

    //your onChange function will grab the values of the fields in the top form: function populateMe() { fname = document.form1.firstname.value lname = document.form1.lastname.value fullname = fname + " " + lname address1 = document.form1.address1.value etc... //Then set the fields in the...
  11. booboo0912

    Change font depending on which browser?

    Is it possible to change the font-family value in a css tag, depending on which browser is used to view the page? Netscape doesn't support the font I would like to use, and the default font looks pretty bad. It looks great in IE! Thanks in advance!
  12. booboo0912

    Variable doesn't hold it's value

    Wow! Thanks for your help, Tarwn! I still haven't figured out the "why", but it will have to wait until Monday...just like the DMV! :) I hope you have a good weekend! Thanks again!
  13. booboo0912

    Variable doesn't hold it's value

    Hi Tarwn! Thanks for your reply! I hope you're not waiting too long at the DMV...if you're in VA, good luck!!! :) For some reason, and we still haven't figured out why, when I put String() around the rs("Total AQ") in the if statements, the variables hold their values. Is this a lazy work...
  14. booboo0912

    Variable doesn't hold it's value

    I'm trying to pull data from a recordset, but when I assign values from the recordset to variables, then go to print out the variable, I get nothing! It seems once I exit my while statement, the variables return a blank. Please see code snipet below: sSQL = "Select art_quality...
  15. booboo0912

    Another transparency issue....grey box around image.

    Hello! I've search through the Archives for related issues, but I haven't found anything related to what I'm experiencing. I have a logo in a <div> tag, placed on top of another image(s). The logo needs to be transparent b/c the image underneath will actually change as the page is refreshed...
  16. booboo0912

    value of radio button if not selected...

    Thanks to you both for your replies!!! Using a radio button with a default value (n/a) is preferred, although that radio button would have to be hidden from the user...which wouldn't be a bad thing. grtfercho, I've been trying to check for the existence of the variable before submitting to...
  17. booboo0912

    value of radio button if not selected...

    If a user doesn't choose a value from a list of radio buttons, the value sent to the database is 'undefined'. I'm trying to check to see if the value of the radio button is null/blank/undefined, and if it is, to change the value being sent to the database to 'n/a' or something similar, anything...
  18. booboo0912

    Creating Forms in Outlook 2000

    Hello! I need to know if it's possible to create a form in Outlook 2000, and have the results sent to a SQL Server database. Has anyone been successful in doing this? Thanks in advance!
  19. booboo0912

    SP Not Returning Value

    WOW...thanks for all of your replies! I should've checked this sooner! A couple things were discovered...I put SELEC NULL instead of Return @Name, and it returned 'h'...then I gave the varchar a length (I had @Name varchar OUTPUT), and it returned the whole string! Thanks for all of your help!
  20. booboo0912

    SP Not Returning Value

    I'm testing my SP to see if my values are being returned...but I'm getting blank/nothing/zilch/nada. So I decided to test if setting the param equal to a string, then returning it in my asp code would work...seems like it should, but it doesn't! Here's my SP (modified): Create Procedure...

Part and Inventory Search

Back
Top