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!

Search results for query: *

  • Users: travmak
  • Order by date
  1. travmak

    Redesigned site for search engine's visibility - Need Critics!

    the componant can be found at http://www.persits.com/ obviously your system has to install it. I don't know how accessable your servers are. I use aspUpload and aspJpg, both are on my servers.
  2. travmak

    Redesigned site for search engine's visibility - Need Critics!

    All of your product images are way to big in your product listing. None of the pages fit in 800 X 600. I use an after market asp componant to allow a user to upload an image of any size and then the componant resizes the image, file size and dimentions to automaticaly create a thumbnail. an...
  3. travmak

    server.mappath() for CF?

    what is the best way to get down to the wwwroot so its easy to change the folder. the thing is we have all of our db's in one folder. we can be 12 folders deep and want to get to the root then specify the db folder. not in relation to where I am but to relation to root. so if my db's are in...
  4. travmak

    Everyone else is doing it. :) Co

    MadMango Thanks for the feedback. I am currently trying to find a way to identify the page without looking out of place. Probably some sort of graphic, just trying to figure out where to put it. The top is getting cluttered, but i'd like to keep the top of the body aligned with the top of the...
  5. travmak

    Everyone else is doing it. :) Co

    Everyone else is doing it. :) Could I get a review of www.localwebdev.com please. Thanks.
  6. travmak

    cflocation and cfcatch conflict

    try this <cfcatch type=&quot;database&quot;> <cfoutput><font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;> <h3><p>You are trying to create a duplicate record.</p></h3> <p>Click <a href=&quot;Search.cfm&quot;>here</a> to return to Search page. <br/> Click <a...
  7. travmak

    Form submit invisible variables from page to page...?

    <form action=&quot;nextpage.php&quot; action=&quot;post&quot;> this makes the browser &quot;post the information with the HTTP request. <form action=&quot;nextpage.php&quot; action=&quot;get&quot;> this makes the browser send the information via the address bar.
  8. travmak

    radio button issues

    thanks xutopia that's close to what i'm looking for, but I don't know the formname, or fieldname so vice document.tv.station something like document.form2.element[i].value = getSelectedRadioItem(currentform.element[x]).value however I can't get it to work. In fact I got some errors using what...
  9. travmak

    radio button issues

    yeah that's what I mean, here is my actual code. Warning it is a nightmare. I'm trying do do it without knowing the fieldnames so I can use this in multiple pages. I doesn't work at the moment: for (radioindexnum = 0; radioindexnum < thisform.elements[indexnum].name.length; radioindexnum++){...
  10. travmak

    radio button issues

    ok we're getting there. so we loop to find the radio button that is checked. in this case just to times to find out if male of female is checked. so lets say male is checked. How do I copy the value &quot;male&quot; to the other form field? for (i=0;i<document.tv.station.length;i++){ if...
  11. travmak

    radio button issues

    thank you both. valeriav - I usualy name my forms something having to do with the information of the form. I just say stuff like document.form.element.name so you don't have to figure out my naming conventions, just trying to make it easier for you guys to read. :-)
  12. travmak

    radio button issues

    yes that was helpful thank you, next question. if i'm doing a loop: for (i = 0; i < form.length; i++) how do i know what ones are radio buttons to put them into a test loop for them?
  13. travmak

    radio button issues

    How do I tell what radio button is selected? I tried copying the value of the radio button with document.form2.elements[indexnum].value = document.form1.elements[indexnum].value; but it didn't work. my two radio buttons are <input type = &quot;radio&quot; name = &quot;sex&quot; value =...
  14. travmak

    copy form values

    hmm, well actualy That's good code to know, however I need to do it by name. The index number is not going to be the same for the form. One form has almost 100 fields that is getting passed to page to page, and each page has about 12 or so fields and it is adding values to the form while...
  15. travmak

    copy form values

    thank you sir
  16. travmak

    copy form values

    I have a form that i want to copy the values to another form. the field names are the same, just the form name is different. would this work in an onclick function? I'm a wee bit worried about the syntax. I haven't had the chance to TS it yet because i'm working on 47 differrent things...
  17. travmak

    change form action

    haha that's funny. Call me you know the number.
  18. travmak

    change form action

    I have an access databse that has to be webenabled (working for the government I can't just do it with access because not everyone has the same version so I have to start from scratch using ASP, JavaScript, HTML, and eventualy incorperate XML. The people I am creating this are very resistant to...
  19. travmak

    change form action

    I'm basing the action on the submit button (I have 6) what would the proper syntax be for the conditional? here are my submit buttons. <tr> <td width=&quot;33%&quot; align=&quot;center&quot;><input type = &quot;submit&quot; name = &quot;submit1&quot; style=&quot;visibility:visable&quot...
  20. travmak

    change form action

    Thanks. How?

Part and Inventory Search

Back
Top