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

    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
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. jmurrayhead

    Data type mismatch in criteria expression.

    This is my SQL: Set rs = Conn.Execute("UPDATE Users SET Webmaster = '" & request.form("RWebmaster") & "' AND Teachers = '" & request.form("RTeachers") & "' AND Staff = '" & request.form("RStaff") & "' AND Parents = '" & request.form("RParents") & "' AND Students = '" &...
  7. jmurrayhead

    Unable to pass query string to form

    I have a database results region I created using FrontPage. I selected one of the columns and clicked on the hyperlink button to set up parameters to send to a form on another page. On the form, I have the values of certain form elements set to for example, <%=FP_FieldHTML(fp_rs,"UserName")%>...
  8. jmurrayhead

    Unterminated string constant

    I receive the following error from this string: Microsoft VBScript compilation error '800a0409' Unterminated string constant /test/validate.asp, line 28 objRS.Open("UPDATE Users SET Password = " & chr(39) & CStr(Request.Form("NewPassword")) & " & chr(39) & WHERE UserName = " & chr(39) &...
  9. jmurrayhead

    Querying a Access Database

    I have an access database that I want to create a query form for. I'm not sure how to do it. I want it to have default values in it based on session variables that I have set. For example, First Name: <textbox value="<%=Session(appName&"x_firstname")%>"></textbox> Last Name: <textbox...
  10. jmurrayhead

    Database Login, Cookies..etc.

    Hello, I'm working on another web site that requires multiple user logins. I was thinking along the lines of an Access database, but here's what else I'd like it to do: I want it to be able to keep session logged in as users go to different pages they have access to. (i.e, a student logs in...
  11. jmurrayhead

    Login.asp

    Okay...what I'm doing is using the script provided by the Database Interface wizard to create a user login page. My server doesn't support the fancy stuff but this works. Does anyone know how I can re-write the script to support more than one user? I've tried a few things but they don't seem to...

Part and Inventory Search

Back
Top