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: *

  • Users: colep
  • Order by date
  1. colep

    File Browse Button Question

    Is it possible to move the Browse button to the left of the input box for a file input filed? My customer wants the button to the left. Thanks in Advance!! Cole
  2. colep

    Curly Braces in Write()???

    Thanks for the info!!!! :-)
  3. colep

    Curly Braces in Write()???

    I am new to C# and I have a question regarding what the {} do within the Write & WriteLine methods... If you look at the code below, this line in particular is confusing me System.Console.Write("{0,24}", s); - what does the {0,24} do here??? Thanks in advance!!! Nicole class...
  4. colep

    Form won't submit on Mac IE

    ya know, I'm not sure... ;) One of my co-workers built the page and I noticed that it wouldn't submit in Mac IE so I was trying to figure the problem out... I think it was done that way, cuz the page has an infinate # of forms on it and each requires about 6 or 7 hidden fields, so I think it may...
  5. colep

    Form won't submit on Mac IE

    I found out what was causing it not to submit... Evidently you have to have at least one input field in the form for Mac IE to submit the form... I didn't have any input fields as I was passing all the info through the action url... So I just created a hidden field and it worked... Just thought...
  6. colep

    Form won't submit on Mac IE

    I'm not using frmProduct.submit() for each, I'm using frmProduct123.submit() for frmProduct123, frmProduct124.submit() for frmProduct124, and so on... I was just using frmProduct as an example form in the submit buttons code above so you could see how I was trying to submit the form... I am...
  7. colep

    Form won't submit on Mac IE

    IE on Mac can't handle submiting a form through a link if there are multiple forms on the page?
  8. colep

    Form won't submit on Mac IE

    That did not work either... no error, it just won't submit... I was not able to get the mouse overs to work on all browsers in the input type=image... Also, there are more than 1 form on the page each are named frmProduct + product id (frmProduct123, frmProduct 124, frmProduct125, and so on...)...
  9. colep

    Form won't submit on Mac IE

    I'm trying to submit a form using an image link (using a link instead of an image form button so a mouse over image can be used). It works fine on all other browsers, but not on Mac IE - no errors are found and it does absolutely nothing. Here's what I've tried: 1.) <a href="javascript...
  10. colep

    JOIN Problem

    Can anyone tell me what is wrong with this Select Statement??? SELECT morning_show.page_header,first_dj.img AS img1,second_dj.img AS img2 FROM morning_show LEFT JOIN djs AS first_dj ON first_dj.id=morning_show.dj1_id LEFT JOIN djs AS second_dj ON second_dj.id=morning_show.dj2_id; It is giving...
  11. colep

    Unwanted '!' in email

    Thanks for the help pfournier!!! That was the problem... I just broke up the description part of it, and it no longer displays the '!' Thanks Again, Cole ;)
  12. colep

    Unwanted '!' in email

    The data in the DB table is: <p>A native of England, Wright came to the United States in 1978. Prior to joining the Wolves, he spent three years working for the state of Minnesota, first as a consultant working on bids for major national and international events, including the programming for...
  13. colep

    Unwanted '!' in email

    Ok, here's the code: $sql = &quot;SELECT * FROM events WHERE id='$_POST[event_id]'&quot;; $result = mysql_query($sql); $row = mysql_fetch_array($result); $strMail = <table> <tr> <td>&quot;; if ($row[title] != &quot;&quot;) $strMail .= &quot;<div...
  14. colep

    Unwanted '!' in email

    I have a strange thing happening... I am pulling content from a MySQL table and inserting it into an email message and an exclamation point is appearing in the email. There isn't one in the table and there isn't one when I just display the content from the table to the page... It's the strangest...
  15. colep

    Determine Parent URL??

    No PayPal doesn't (as far as I know). That's the bad thing about it. I'm building this site for someone else and they want the customer to have the option to pay with PayPal... I guess I'll just use the HTTP_REFERER and see how well that works. Thanks for your help. Cole ;)
  16. colep

    Determine Parent URL??

    Is there a way to know where the user came from (parent url) when entering a page on my site. I'm not finding anything on how to do this, but I'm sure it's possible. Here's my exact problem: I'm wanting to sell a program online that the user can then download once they have purchased it. One of...
  17. colep

    Members Directory

    I am new to Frontpage and my customer would like a password protected members area. He will be give the members a username and password so they can login in the the members area. How do I do this in FrontPage??? They don't need to register, I just need a to know how to have a login form that...
  18. colep

    What's wrong with my code??

    Thanks for your help guys but I found an easier way to accomplish the task at hand using php.... Thanks again for your help, Cole ;)
  19. colep

    What's wrong with my code??

    The delete_alt hidden form element needs to be an array in order for me to catch when the form is submited and just adding a number to the end of the name (delete_alt0) isn't going to cut it. It needs to be an array, because the number of items in the package is unknown. The form looks like...
  20. colep

    What's wrong with my code??

    But the problem is the delete and delete_alt form elements are arrays... The form is repeated for each item in the package. And I need to access just the one that gets checked to delete that item. Is there another way to do this??? Cole ;)

Part and Inventory Search

Back
Top