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 Mike Lewis 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. jesse123

    DateDiff

    Just what I needed. THANKS!
  2. jesse123

    DateDiff

    I’m trying to find the difference between two times. This is what I have... <%=DateDiff("n",(RS_Tickets.Fields.Item("FLD_TimeStart").Value),(RS_Tickets.Fields.Item("FLD_TimeEnd").Value))%> Is it possible to make it so it displays the difference in HH:MM format? The way it is now, it shows...
  3. jesse123

    Text Field and Response.Write

    That's what I had and get this... Error Type: Microsoft VBScript runtime (0x800A01A8) Object required: ''
  4. jesse123

    Text Field and Response.Write

    I want the value of my text field to be what ever my response data is. How can I have: Response.Write "File Uploaded: " & File.FileName & "<br>" also appear in my text field? <input name="Pic" type="text" value="">
  5. jesse123

    Copy Write Response data to a Text Field

    How can I copy the data from: Response.Write "File Uploaded: " & File.FileName & "<br>" to here: <input name="Pic" type="text" value=""> I want the value of my text filed to be what ever my response data is.
  6. jesse123

    Send form to email and DB

    This is what I ended up with... :) <html> <%@ Language=VBScript %> <%Fname=request.Form("name")%> <%Fdate=request.Form("date")%> <%Ftime=request.Form("time")%> <%Faction=request.Form("action")%> <%Fload=request.Form("load")%> <%Fnotes=request.Form("notes")%> <% 'DNS CONNECTION Set conn =...
  7. jesse123

    Send form to email and DB

    Thanks for advice! I took two different FAQ's and put them together and was able to get it to work! :)
  8. jesse123

    Send form to email and DB

    I looked at the FAQ's and came accross a sample on sending email and posting to DB. I'm not sure how to make this work... Can some one give me a hand and check what I did? <html> <%@ Language=VBScript %> <%Mname=request.querystring("name")%> <%Mdate=request.querystring("date")%>...
  9. jesse123

    Show data entered today?

    How can I filter my RS so that it only shows data that was entered today?

Part and Inventory Search

Back
Top