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!

Search results for query: *

  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
  16. jmurrayhead

    VBScript Prompt

    Okay so if iAnswer = 6 then I could use a response.redirect to my delsql.asp correct? As of right now, for each record, this is what I have for the delete: response.write("<a href=""management/delsql.asp?KNum=" & KNum & "&CLID=" & ClassID & """><img src='/images/del.jpg' border='0'...
  17. jmurrayhead

    VBScript Prompt

    Hello, I have a page that displays records from a database. Two columns in the table that displays the records are an edit and delete links that I have. These are referring URLs. On the delete button I want a confirmation box to display to prevent accidental deletion. How can I do this and how...
  18. jmurrayhead

    Microsoft JET Database Engine error '80040e10'

    I guess a quick fix would be if anyone could show me how to use those drop down menu's that refresh data depending on what is selected in the main menu..like what they use on a lot of used car search sites. The code above simply posted a value to the page it was on to determine which drop down...
  19. jmurrayhead

    Microsoft JET Database Engine error '80040e10'

    I am getting this error: Microsoft JET Database Engine error '80040e10' No value given for one or more required parameters. /assignments/management/del.asp, line 37 Here is the code I wrote: <form name="initialselect" method="POST" action="del.asp"> <select name="Class"> <option...
  20. jmurrayhead

    Data type mismatch in criteria expression.

    LOL...well that did the trick! Thanks much for your help. I thought we were supposed to be able to use AND? Or is that just for certain cases?

Part and Inventory Search

Back
Top