Submitted Time Spent On A Page To A Log File

I am looking for the best way to capture the time spent on a page and then write that to a txt file sitting on a server when the form is submitted. Right now I capture the time spent using javascript... I know i cannot write to a file using this. I am not looking to learn any in-depth ASP stuff... just looking for a simple solution if at all possible.

View Replies


ADVERTISEMENT

Time Spent

Is there anyway using ASP to calculate how much time a person is spending in a page? Not the whole website just a particular page

View Replies View Related

ASP To Re-load Page From Time To Time To Reset Varaibles

I have a website that I subscribe to that allows me to track tasks. I have an extra computer with a big monitor that i want to always display the task list. the problem is after so many hours I get logged out.

I need to need to reload that sign in url every few hours Code:

View Replies View Related

I Just Spent Several Hours Shaving A Total Of 250 Milliseconds Off My Application

building variable width/DB tables etc using getrows instead of movenext.
Performance is a major concern as this app requires SSL.

My question is, when does it become more about the challenge of building
faster apps vs. getting the job done??? If my calculations are correct, I
just added an extra 10,000+ possible hits within a 12 hour day or so.. an
extra 10,000 hits???!!! What percentage of applications do you think will
ever see this kind of traffic?

Is this insane? If this app ever gets maxed out, will my end users ever
realistically notice a difference?

View Replies View Related

Asp Submitted

I have an user.asp page(has html display) which displays
the controls; After client-side validations, I do a
document.form.submit() to a process asp page(no html, only
server side processing and then redirects to the user.asp).
This process asp calls some dll functions which might take
a couple of hours if number of records to process is huge.
Now, the dll opens a pop-up window which shows the status
of the results(number of records processed and failed).
After exactly 1 hour, the user.asp page says page cannot
be found. Is it due to some timeout or something? What
could be the reason?

View Replies View Related

From Submitted

I have a form that I need to have the information sent to a fax machine when somebody submits it. Can I do this from my website and if so, how?

View Replies View Related

IIS Hangs When Certain SQL Submitted

Does anyone have a suggestion how I could debug this
problem:

1. Data is collected from database and displayed in a form.
2. User updates data and submits it.
3. Submitted data is compared with old data.
4. SQL is generated for changes and put into an array.
5. SQL in the array is executed line by line.

I've copied the code which does the update from a working
page that does something similar. And tested it with a
basic update to be sure. But for some reason when I
submit this sql:

update table set currency = 'USD' where currency = 'GBP'
and company = 'LQ' and supplier_id = 'BCX0926' and
invoice_no = '654664432'

IIS hangs and the browser displays a blank white page. At
this point the whole site becomes unusable until I restart
the IIS Admin service.

I've pasted the sql into Toad and tested it there and it
works fine. Could anyone suggest what the problem is, or
how I could go about debugging it. Normally when I get
errors thet are written to the screen. But in this case,
I dont get anything back at all. Code:

View Replies View Related

Submitted Form

Is there any way to check when a form is submitted?Sample code is welcomed.

View Replies View Related

Run Submitted Code

What I want to do is create some code in a variable, then execute the variable, sorta like this code:Code:

<%

Code:
code = "response.write ('bla')"execute(code)%>

Except I want something that works (that code is conceptual)anyone have any idea's ?

View Replies View Related

Using RTE But Nothing Is Submitted In The Form?

I added the RTE to enable text editing in a textbox. The editing box displays fine, but nothing is submited to the action url in the form object?

View Replies View Related

Value Submitted On Form

I have form around a table. The form contains checkboxes for whihc elements are selected, and hidden fields listing the current value of the elements, and the line identifier for every line so I can tell precisely which subset of the table was visible to that person at that time.

I need to determine if a line that is not selected was prior to this submission. Something pseudocode-wise similar to:

If (Len(Request("DueDate-" & TheItem)) <> 0 ) AND (Request("DueDate").Contains(TheItem)) then

Where Request("DueDate-" & TheItem) contains the current value of the line (not blank since the entry has a length). The second part is what I have a problem with. Without manually looping through Request("DueDate") to do a search, I have no way to tell if Request("DueDate") (which contains a list of selected items) contains the line I am examining.

View Replies View Related

Adding Values From A Submitted Form

I am trying to total the value of some form fields I am referecing the form
field with an inner loop, I am having a little trouble because the amount of
fields returned is always different, how can I roll-up the total of the form
fields (request.form("subtotal_"& i)) to get one final figure? Code:

View Replies View Related

Triggering Email When Form Is Submitted

I know I've seen a tutorial on this, but can't locate it. I have a form that I've written that submits into a SQL database. I'd like it to fire off a notification email as well when an entry is submitted. Can someone point me to a tutorial that explains how I can do this?

View Replies View Related

Form Gets Submitted Onchange Event

I have a form with textboxes,and a select option(country)..onchange of select
element,i reload the form because i hit database to get cities of country selected..
whatever info user has entered is being stored in session variables.

my problem..as the form gets submitted onchange event of select user is able to write in textboxes but this info does not get stored in session varibles(but info written in textboxes before select is used does get stored and i am able display again onload of the form). how can i tackle thisproblem.

View Replies View Related

Page Time Out

I am creating a text file. I have a button that will import data to an sql tabel and then redirect to the file page. the File page will generate letter with name and address pulled out of the database and then show a table with the name / address the letter / file was created for.

The thing works fine if i place "top 10 " in my select query. If I let it just run the whole list (could be 1300 or more names) the page times out on me.

View Replies View Related

How Can I Check That A Submitted E-mail Adress Is Valid?

Say I retrieve and e-mail adress from a form like this, then I know how to check that it's not empty, contain numbers etc. but I don't know how to check that the e-mail complies with some kind of regular expression or the like.

Therefore I wonder if you have any good e-mail form validation code that can be used on the server side (comparable to Java Script reg.exp on the client side).

<%

Dim mail
mail = request.form("email")

IF mail = "" or mail does not complain with some kind of reg. exp THEN

some code....

End IF

View Replies View Related

Find And Return Data From A Just Submitted Record.

I have a page where a user can submit a record for a new "applicant". After the user clicks Submit, I would like to send the user to a new page containg the "Applicant Number" which the user will need.

The applicant number is simply the autonumbering of the record in the table which is in a SQL Server db. How do I capture the record number(primary key) of the newly entered record in the table and send it to my new page?

View Replies View Related

Page Generation Time

What's a way to do a: Page generated in X.XXXXXXXXX seconds.

View Replies View Related

How Do I Run 2 Pieces Of Sql At The Same Time On The Same Page?

i want to run two pieces of sql that connect to two different tables that are not assosiated with each other, in 1 asp file. how do i do this. Code:

View Replies View Related

Page Is Loaded For The 1st Time

is there any method that tests if it's the 1st time that page is loaded? Or if the submit button is clicked or not? my form validation function is working as soon as the page is loaded. but i don't want that. i need that function start working only after my submit button is hit. how can i check the difference?

View Replies View Related

Trying To Insert Multiple Records Into Database When Form Is Submitted

I'm trying to insert mutiple records into my database when the form is submitted.. My form has 4 textfields; serial1, price1, serial2 and price2.

I would like to insert serial1 and price1 as one record, then serial2 and price2 as the second record. I know some sort of loop has to be used to achieve this but i'm new to this and I don't know what to do...

I tried to do it with dreamweaver but it does not seem possible and the dreamweaver code seems really complicated I've only been able to insert only the first row(serial1,price1).. since I only have 2 fixed rows I guess what I need to do is to get dreamweaver to do it twice in a loop. Code:

View Replies View Related

File Creation Time

I need to find a way to pull the file creation time from a file. I have a webcam FTP a file every 5 min. That pic does not have the time and date. I would like to find out how to pull the creation time from the file.

View Replies View Related

Printing Web Page Without URL, Date And Time

Here is my code and when i print out this page i see the url for the page and also the time and 1 of 1 which is the page number can someone tell me how i can avoid these things so they are not printed ....

View Replies View Related

How Can I Speed Up The Load Time On Page?

This page takes awhile to load which is probably due to the queries and the way I have it outputed. Anybody have any advice for speeding this up? Code:

View Replies View Related

Database List Page At A Time

I show information from a database in a table format. I will be showing more and more data and would like to show it one page at a time with a next page back page option.
Can I do this on a web page and does anyone know where I could look to find out how

View Replies View Related

Page Generation Time In Seconds

The code to show how long it took the page to generate in seconds ?!?, if you get onto the main page of this site, www.tgplus.net and loom at the left had side, it tells you how long it took the page 2 generate.

View Replies View Related

How To Upload A File To Two Different Places At The Same Time?

This is my souce code to upload multiple file into 1 directory. How can i improve it to make it can upload to 2 different place in the same time when i click the upload button? Code:

View Replies View Related

Opening Database & ASP Page Update Same Time

There's an access database on an iisserver and asp makes updates to it. The
database got moved to a newer server. The users used to be able to open the
database and use the asp pages at the same time. Now when the database is
open the asp pages won't update.

View Replies View Related

My Server Hangs For A Long Time After I Run This Page

My server hangs for a really long time after I run the following code...

It is to serve up 3 types of files: a picture, a word document, and an mp3 file from a directory "/uploads" that is not accessible through the URL. The script works perfectly for the picture and doc file, but nothing loads when it is used for the audio files. The files are a few megs large, but after I run it I can't access ANYTHING on the site for quite some time.

What's wrong? Is it something wrong with M@rco's script? Did I impliment it wrong?

I don't mind if it simply takes a long time for it to load the audio file, but it is killing the entire server it seems like. Code:

View Replies View Related

How To Calculate Web Page Loading Time On Client ?

How to calculate web page loading time on client and send back result
to server side ?

View Replies View Related

Refresh/update Page When Using Time() Function

I have an asp page in which I use the �time() function but that just gives the time at the moment the page is loaded. I need to reload/refresh the page once every second so the seconds increase by one continuously.

View Replies View Related

Auto Refresh Page After Limited Time

I have a clickable graph that resides on page 1. If user clicks a data point
on the graph, the page runs again yeilding a 2nd graph that shows a more
detailed graph.

Problem is, I have a recordset table on the 2nd graph page and because the
user gets to it by clicking the graph, the page doesn't properly post to
render the recordset table. I can click "Refresh" on 2nd page and table
displays fine.

Is there an ASP refresh command that I could possibly run to mimick a
"Refresh" or F5?

View Replies View Related

Graphics Reload EVERY Time The Page Reloads

My problem is that the left and right panels of my website are exactly the same on every page so I made them into an include file. Yet, everytime a person clicks a link to another page, those images have to reload all over again....

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved