2 messaggi dal 28 febbraio 2007
salve
ho trovato questo script x conoscere quanto tempo utente stà in una determinata pagina....mi scuso se ho sbagliato forum...

<%@ Page Language="VB" %>
<script language="VB" runat="server">

Sub Page_Load(sender as Object, e as EventArgs)
Dim strTimePageLoaded As String

strTimePageLoaded = Request.QueryString("time")

If IsDate(strTimePageLoaded) Then
lblTimeSpent.Text = "You spent " _
& DateDiff("s", CDate(strTimePageLoaded), Now()) _
& " seconds looking at the previous page."
Else
lblTimeSpent.Text = "You haven't clicked on the link below yet."
End If

End Sub

</script>

<html>
<head>
<title>ASP.NET Time Spent on Page Sample</title>
</head>
<body>

<p>
<asp:Label id="lblTimeSpent" runat="server" />
</p>

<p>
<a href="time.aspx?time=<%= Server.URLEncode(Now())%>">How long have I spent on this page?</a>
</p>

<hr />

<p>
Click here to read about and download the source code.
</p>

</body>
</html>
--------------------------

ciò che vorrei imparare è come passare i secondi ottenuti dopo unload pagina a un database..

mille grazie Sonia

Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.