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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jmurrayhead

  1. jmurrayhead

    Checking string for certain characters

    Thanks everyone...that was more of what I was looking for. Does the job perfectly!
  2. jmurrayhead

    Checking string for certain characters

    Thanks for the help! Worked great!
  3. jmurrayhead

    Checking string for certain characters

    I want to be able to check strings for invalid characters for my login system. Let's say I have the string Passcode = request.form("Password") How would I be able to check for / ? ; : ' " . , etc...? Thanks
  4. jmurrayhead

    Redirect Login

    Nevermind, I figured it out...thanks!
  5. jmurrayhead

    Redirect Login

    Okay, I've done something a little different. I have the querystring stored in a hidden field on the login page and that is posted to my login script. So on the login page: <input type="hidden" name="Redirect" value="<%=request.querystring("Redirect")"%> On my login script page, I store the...
  6. jmurrayhead

    Redirect Login

    It's on the page I run my login script where I tell it to redirect. Response object error 'ASP 0158 : 80004005' Missing URL
  7. jmurrayhead

    Redirect Login

    Hmm...it keeps telling me a URL is missing. Any ideas?
  8. jmurrayhead

    Redirect Login

    Hello, I'm working on a login script. Right now I have it when a users' session has expired and they click on a link, it will redirect them to the login page, with the URL of the page they tried to access in the address bar. What would I have to do on my login page to redirect to that URL...
  9. jmurrayhead

    Open a maximized web page?

    Place this between the <HEAD></HEAD> tags: <script language="JavaScript1.2"> <!-- // Auto maximize window script - By Nick Lowe (nicklowe@ukonline.co.uk) // Courtesy of SimplytheBest.net (http://simplythebest.net/info/dhtml_scripts.html) window.moveTo(0,0); if (document.all) {...
  10. jmurrayhead

    Display Records by Certain Date

    Thanks for the info...I am using ODBC but the # works fine.
  11. jmurrayhead

    Display Records by Certain Date

    Okay, that's what I was doing wrong. I did everything except use #. Why do you suppose that is used? Thanks
  12. jmurrayhead

    Display Records by Certain Date

    Hello, I have an Access database that has a column for an expiring date. How would I query the database to display only records whose expiring date is greater than the current date? For example, if the current date was 6/16/2004 and there were these expiring dates: 6/1/2004 6/15/2004 6/17/2004...
  13. jmurrayhead

    VBScript Prompt

    Yup, too many quotes! Thanks for all of your help! Works perfectly!!
  14. jmurrayhead

    VBScript Prompt

    When I click Delete, nothing happens. Here's what I have: <SCRIPT LANGUAGE=vbscript> <!-- sub delver(sURL) dim iAnswer iAnswer = msgbox("Are you sure you want to delete this record?",vbyesno,"Verify") if iAnswer = 6 then 'Yes was clicked 'Process code...
  15. jmurrayhead

    VBScript Prompt

    so this would work then? window.navigate "http://mysite.com/delsql.asp?KNum=" & KNum & "&CLID=" & ClassID & " or how else would I be able to get those values by clicking on the link from the database results? Thanks

Part and Inventory Search

Back
Top