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: gwillr
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. gwillr

    Monitor Issues

    This perhaps may be out of the scope of this forum, but i will give it a shot anyway I have two dell flatpanel monitors, same model, and both reset to factory settings. One has a real yellowish look to it, as it it never gets as bright as it shouold....what could be causing this, and is...
  8. gwillr

    Specific Style of Form Validation.

    I have a form on a web page that I need to implement some sort of validation. After some research, I decided that javascript is out of the question for this. (users can turn off, bypass if really wanted to among others) There are only two fields....a name "Name" and email address "EMail"...
  9. gwillr

    Multiple-step OLE DB operation generated errors.

    I have a form that uses .asp and vbscript to submit the results, (name, email, filename) to a database. I am having a problem with the email field, in that if i have someemail@domain.com , the information submits correctly, and all is well. -BUT- If i have someemail99@domain.com (numbers in...
  10. gwillr

    Changing Directories

    I have the folllowing code: <% Dim sPath, filesys, getValue, update, count sPath = Request.ServerVariables("Path_Translated") sPath = Left(sPath,InStrRev(sPath,"\")) & "counter.txt" Set filesys = CreateObject("Scripting.FileSystemObject") %> the file 'counter.txt' needs to be to a...
  11. gwillr

    Security, best-practice question

    I have a few forms for collecing user input. The are processed via .asp scripts. teh data from the form goes to files in a password protected area. Is it necessary or better to have the .asp files that process the input in that protected area as well? Thanks in advance for any input. Gary...
  12. gwillr

    Browser Compatibility Problems (Javascript)

    I have a media player activeX on a page(http://www.robarspages.ca/devroot/photosite/movie.asp), where the user chooses a selection from a drop-down menu, and that movie plays. This works great in IE, and functions as intended. In Mozilla, however, it does not. Due to ActiveX problems with the...
  13. gwillr

    Possible Alignment Issue

    I have a table that houses a media player, and some decroative graphics: http://www.robarspages.ca/devroot/Photosite/movie.asp In IE, when a movie is played, there is a black space between the the player, and the right graphic. I can not seem to get rid of it at all. Any suggestions here...
  14. gwillr

    List bullets as links?

    I have an unordered list of links. my css styles for the links has them change color on 'hover'. Is there a way that I can have the 'bullets' change as that item is 'hovered'? I have tried wraping the whole <li>link</li> in the <a> tag, but then the 'hover does not work. Any...
  15. gwillr

    Forrms. Problem with Validation

    I have a form in the following table, which works fine, and displays correctly., BUT, will not validate. <table class="splashtable" cellpadding="0" cellspacing="0"> <tr> <td class="td1"> </td> </tr> <tr> <td...
  16. gwillr

    Full url for sPath?

    I have a few pages in different areas that must reference a count in the same text file via asp. <% Dim sPath, filesys, count, getValue, update, twohrs sPath = Request.ServerVariables("Path_Translated") sPath = Left(sPath,InStrRev(sPath,"\")) & "counter8.txt" Set filesys =...
  17. gwillr

    No Horizontal Scrolling in &lt;Textarea&gt;

    I have an input <textarea> where the user can enter a blurb and submit. I am trying to disable any horizontal scroll. it works in IE with style="overflow:hidden" But in Mozilla, the text will not wrap, and as soon as the input exceeds the width of the textarea, the scrollbar appears. Is...
  18. gwillr

    borders pushing table width? How to fix?

    http://www.robarspages.ca/devroot/linksite/index.asp Look at the second link table, with the thin blue border. Does anyone know how to fix the left border from being 1 pixel too wide? Gary www.robarspages.ca
  19. gwillr

    Real-Time Inventory Check---Worth it or not?

    I am with an online retailer in a business with many competitors, in a sector with not much differentiation, other than price and customer service. The product, a replenishable one that consimers need ona day-to-day basis, and one that many can not go without, is one that when ordered, it is...
  20. gwillr

    _vti_cnf

    Can anyone tell me what these folders are used for, or what benefit they serve? They seem to house duplicates of every file in the web server wwwroot and sub folders. (taking up space!) Are they associated with security in any way? Or with FrontPage?? Thanks for the insight in advance. Gary...

Part and Inventory Search

Back
Top