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: gwillr
  • Order by date
  1. gwillr

    Order based on count in a txt file

    PS - excuse some of the response.write lines in there, they are just in there to test whether the retrieval was successful, and they will be removed later. Gary www.robarspages.ca
  2. gwillr

    Order based on count in a txt file

    Thank you for the great help. I have managed to get the code written so that it retrieves the valies from the txt files, and saves them in an array. (see code below so far..is there a better way to write that?) How can i arrange/sort the counts now so that they are in ascending numerical...
  3. gwillr

    Order based on count in a txt file

    This makes perfect sense. Yes, the pics are numbered: 01.jpg, 02.jpg...., and they correspond with numbered txt files 01.txt, 02.txt..... I am not sure how to get the counts from the files in to the array? Gary www.robarspages.ca
  4. gwillr

    Order based on count in a txt file

    Thanks for the response. I already have em couting away, it is just the reading of the txt files, sorting, and listing that I am having trouble getting my hear around. sorry for being unclear, some of the concepts of asp are still a bit foggy, and perhaps this may be over my head. Gary...
  5. gwillr

    Order based on count in a txt file

    hmm, thats a clever script, cheers to you! not quite sure it will work for my purpose though. I need something that looks trough the list of textfiles, figures out which one holds the highest count, then write the code to show them all in order from highest to lowest. goal is to list the more...
  6. gwillr

    Order based on count in a txt file

    I have a list of images with link tags around them, that when clicked to view the fullsize, some code imcrements a hit count stored in an individual txt file. (img001.jpg would store its count in 001.txt) I want to have the images listed order based on their respective counter file, from...
  7. gwillr

    Problems With Form Validation Script

    Hello Everyone, I have the following script that should check both name and email for the appropriate characteristics, and return appropriate error messages, depending on the error. When all is successful, it submits to a DB. The problems that I can not seem to work out, are: 1 - I need the...
  8. gwillr

    Validate for TLD

    vbkris Thanks for the follow up response. I have been been playing with a few examples since this post, but here is teh code as it now sits from that original one we talked about: ( I have tried several emails, one, for example, that didnt work is name@domain.com ) Here is to code as it sits...
  9. gwillr

    Validate for TLD

    Thanks everyone for the input. bslintx - I have taken your advice and set something up similar, but still have a few bugs to work out, may p[ost them later if i cant get through them. vbkris - I have tried using the string yo have suggested. it casuses nothing to be allowed through, even...
  10. gwillr

    Validate for TLD

    Well Tony, you raise a valid concern. I guess I am a bit of a perfectionist, so it will nag at me if i neglect it. Any Help at this point is appreciated, as I have spent two days researching! Gary www.robarspages.ca
  11. gwillr

    Validate for TLD

    I currently have an email field validation that is okay, but I am looking to add in something that will verify that what has been entered ends in one of the TLDs (com, ca, info, biz, org and so on.) I am unsure of how to implement that additional feature in to what I have: 'Email...
  12. gwillr

    Form Validation Slightly Off

    Thanks Tsuji! I have done some research on email validation, and and had run across this code for actually checking the domain for validity: <%@LANGUAGE="VBSCRIPT"%> <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  13. gwillr

    Validate form for minumum length

    Thanks for the input on this one Sheco. Im not sure I agreee that client side is necessarily better. While it is true that it may save time/resources in the cases you had mentioned, but from a www (non intranet sire) perspective, it seems better to use a server side. The javascript...
  14. gwillr

    Form Validation Slightly Off

    Thanks Tsuji, That did the trick! Its funny how things like that slip by after looking at the screen for a few hours! Thanks again! Cheers Gary www.robarspages.ca
  15. gwillr

    Form Validation Slightly Off

    http://www.robarspages.ca/devroot/computersite/aspvalid2.asp I am trying to validate this form before submisison to the DB. THe problem is, when the name field is valid, it doesnt care to check wehther the email is also valid. but, when name is invalid, say, blank, it checks to validate...
  16. gwillr

    Form Validation Slightly Off

    http://www.robarspages.ca/devroot/computersite/aspvalid2.asp I am trying to validate this form before submisison to the DB. THe problem is, when the name field is valid, it doesnt care to check wehther the email is also valid. but, when name is invalid, say, blank, it checks to validate...
  17. gwillr

    IIS and Windows XP Home Edition

    Afraid you will have to upgrade to XP Pro or a windows server edition. Others I have talked to have tried putting IIS on XP home, and have had nothign but problems with it. Gary www.robarspages.ca
  18. gwillr

    find who/what is consuming your server resources?

    Hello, did you have a look at the IIS logfiles in c:/windows/system32/inetsrv ? Gary www.robarspages.ca
  19. gwillr

    Validate form for minumum length

    Hello I have a form that validates some information, and subm to DB. I want to add an additional parameter to be validated. THe string should have no less than 8 characters. if len(strEmailAddr) < 8 then berror = true strNameClass = "clsErrorPrompt" strErrMsg = strErrMsg & "Entry...
  20. gwillr

    Specific Style of Form Validation.

    bhuninghake, In your example (i have it working for me now) how do submit information, once deemed valid, to another asp file that will write it to my DB? Gary www.robarspages.ca

Part and Inventory Search

Back
Top