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

  1. chellweg

    Setting up a new switch

    I am expanding our network, and purchased a Dell PowerConnect 3324 managed switch to put after my T1 router sot that I can segment off my public IP's to specific servers, as I am adding an additional web server. I have not dealt with managed switches before, and do not no where to start.. I is...
  2. chellweg

    Parsing a text string

    i am retrieving data from a field in my database, but want to strip off the text portion at the end. The first half is dates, and that is all I care about. An example of one of the strings is: 02-18-2005 - 02-19-2005 - Rale All I want to use out of it is: 02-18-2005 - 02-19-2005 What is...
  3. chellweg

    Autofit Text

    This still makes the field size grow to fit the text.. it does not keep the text box the same size.
  4. chellweg

    Autofit Text

    I have several dynamic text boxes that are filled with action script... Is there a way to automatically change the font size if it is going to be bigger than the text box?
  5. chellweg

    Delete selected files

    I have the following script that lists the files in a different directory and generates hyperlinks to them to download them with a check box next to them. I want to be able to delete the selected files I know I can use the file system object to delete files, just don't know how to have it loop...
  6. chellweg

    Delete selected files

    I have the boxes showing now, but I want to be able to submit to the same asp and have it call a function to delete the files. this is where I am stuck now. Here is the code I have now: <%@ Language=VBScript %> <HTML> <HEAD> <TITLE>Gungor Productions File Exchange</TITLE> <style> BODY...
  7. chellweg

    Delete selected files

    I have the following script that lists the files in a different directory and generates hyperlinks to them to download them. I want to be able to but a check box to the left of every file that is listed and have a delete selected files button at the bottom of the list. I know I can use the...
  8. chellweg

    File Upload Directory Listing

    I have a file upload script I am working on, and the uploading works fine. The part that I want to add that I am not sure about is this: I want the asp page to create a list of the files that exist in the upload directory and have a hyperlink to them to allow them to be downloadable right...
  9. chellweg

    Hiding a form field until another filed value is a certain value

    The code compiles correctly now, but when you change the drop down, it produces a style error. Current code: <HTML> <HEAD> <SCRIPT LANGUAGE=&quot;JavaScript&quot;> function checkFormValues() { var f1Value = document.getElementById('urgency').value; var f2 =...
  10. chellweg

    Hiding a form field until another filed value is a certain value

    No Go.. Code Changed to this: <HTML> <HEAD> <SCRIPT LANGUAGE=&quot;JavaScript&quot;> function checkFormValues() { var f1Value = document.getElementById('urgency').value; var f2 = document.getElementById('phone').value; var f3 = document.getElementById('timetocall'); if...
  11. chellweg

    Hiding a form field until another filed value is a certain value

    Here is my updated code with the form fields I need, but it does not seem to work now... I am guessing I am using the wrong operator for &quot;OR&quot; <HTML> <HEAD> <SCRIPT LANGUAGE=&quot;JavaScript&quot;> function checkFormValues() { var f1Value =...
  12. chellweg

    Hiding a form field until another filed value is a certain value

    Dan, this works great with one exception... The title of the field is not hidden. Is there an easy way to hid that as well?
  13. chellweg

    Hiding a form field until another filed value is a certain value

    Is there a quick easy way to hide 2 fields on an HTML form until the value of one of the other fields equals a particular value?
  14. chellweg

    Removing Spaces

    I want to remove all spaces from a particular string that is input into a form. So if they typed &quot;Microsoft Corporation&quot; on the form, it would become: &quot;MicrosoftCorporation&quot;. I know I can trim leading and ending spaces, but how do I remove all of them?
  15. chellweg

    JMail Question

    Thank You very much. That showed me where the error was, and worked as soon as I fixed the error!
  16. chellweg

    JMail Question

    I have the following script that is processing a form. It works fine if I remove everything from Set JMail on, but as soon as I add the Jmail part in, it fails to run and displays a Page Cannot Be Displayed message. What is missing here. I am running IIS5 and have installed JMail on the...
  17. chellweg

    Email form converting to ASP

    I have a form that I have people filling out, that I have changed to post to an ASP instead of email. I still need to recieve the email I used to get, but I also need to continue to post to the ASP as well in order to facilitate the file download that I put into the asp (thanks to usrbinperl...
  18. chellweg

    Small Script

    Yes, there are 10 fields... Also, the form is currently using POST, and it is also sending an email to me which I need to continue to get. Is there a number I can call you at or email you for further info? My email is chellweg@laughyourway.com.
  19. chellweg

    Small Script

    Where would I add this into my current HTML, and I am assuming all I would do from there after it is added is change the ext to .asp instead of .htm... If it would help, I can post the form HTML.
  20. chellweg

    Small Script

    I currently have a form that give the person the ability to select 5 files to recieve based on 2 fields. a Volume Number and a Track Number. I currently have the form results emailed to me, and then send them the 5 files. I want to creat an ASP that concatenates the Volume and Track values...

Part and Inventory Search

Back
Top