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...
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="">
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.
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 =...
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")%>...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.