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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by shawntbanks

  1. shawntbanks

    trying to do inner joins

    <table><tr><td><div class="heading1"> Current Artists:</div></td></tr> <cfoutput query="get_artist" group="artist_id"> <cfset artistname="#fname# #lname#"> <cfoutput> <tr><td valign="top">#artistname#</td> <td valign="top">#name#</td></tr> <cfset artistname=""> </cfoutput> </cfoutput> </table>
  2. shawntbanks

    trying to do inner joins

    Thanks r937 There stills seems to be a little problem. Here is the error that I am getting. Error resolving parameter NAME ColdFusion was unable to determine the value of the parameter. This problem is very likely due to the fact that either: You have misspelled the parameter name, or You...
  3. shawntbanks

    trying to do inner joins

    I am trying to have a list of artist, and beside them on the page a list of all artwork that is related to that artist. for example artist 1: artwork1 artwork2 artwork3 artwork4 This is my query. <cfquery datasource="artworks" name="get_artist">...
  4. shawntbanks

    how to rotate a banner ad

    is a iframe something hard to do
  5. shawntbanks

    how to rotate a banner ad

    This is the code that I have to rotate the banners now, but it only does so when I hit refresh, what I want to do is to rotate them while the page displays. (I am assuming that I will have to use javascript to do so) but I would like to use the exsiting code with it. This code pulls the banners...
  6. shawntbanks

    multipule slide shows on one page

    Below is the code that I am trying to use to put two slide shows on one page, but I can't seem to get it to work, does anyone have any ideas <HTML> <HEAD> <TITLE>homepage</TITLE> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> <script language="JavaScript"> // Set...
  7. shawntbanks

    help creating a value from an array

    hope that someone can help me. I have a shopping cart that is stored in arrays and structers. I have to send to the transaction provider a item string with the details of what was ordered. here is the code, can someone please help this is the string that the transaction provider needs me to...
  8. shawntbanks

    Email sitting on the server

    Exchange server has been set up and everything is working fine so far. The accounts are accessed over the internet, and I can send email no problem and the person that it is sent to receives it ok, but when they reply or send me a new one I can not receive it. if I look on the exchange server...
  9. shawntbanks

    populate dropdown menues.

    hi there, I am relitively new to coldfusion and Javascript, so i am looking for a little help regarding dropdown menues. I seem to have no problem populating them from scratch, but when I recall what a person has selected, and put that in as the selection that shows, and then give them the...
  10. shawntbanks

    Trying to populate a menu on Edit page

    Code in red is the template that EDIT_item is calling <cfset idx = -1> <cfset mycase = 0> <head> <title>Online Shopping Centre</title> <SCRIPT LANGUAGE=&quot;JavaScript&quot;> <!-- // BannerAD var bannerAD=new Array(); var bannerADlink=new Array(); var adNum=0...
  11. shawntbanks

    Trying to populate a menu on Edit page

    I really appriciate the help, I am still not achiving the results yet. The two drop downs don't seem to jiving, Vehicles will come up with merchandise subcategories, Realestate, with Equipment. they don't seem to want to match up Could it be the Javascript
  12. shawntbanks

    Trying to populate a menu on Edit page

    That got rid of the duplicate , but it is not updating the subcategory table correctly now
  13. shawntbanks

    Trying to populate a menu on Edit page

    When I select the category (vehicles)and the sub (Truck)on the original page, then go to edit it. so then on the category field, so then in the category dropdown the first option is Vehicles, then it shows up again down the list. and in the subcategory dropdown trucks show up on the top and it...
  14. shawntbanks

    Trying to populate a menu on Edit page

    Thanks for the help, that seems to help alot, but one little problem, nothing big. When I use that code I get duplicates on both the category and subcategory drop downs. Any ideas
  15. shawntbanks

    Trying to populate a menu on Edit page

    I seem to have no problem populating a second menu from scratch, but when I try to do a edit page for my shopping cart application, I seem to run into problems, and I can't figure out how to do it. When a customer wants to edit their selection I populate the menues from the cart, the category...

Part and Inventory Search

Back
Top