Ask a Question related to ASP, Design and Development.
-
Karen #1
QUESTION ON SESSION VARIABLES
Hi there....
i got a quick one for you guys. i've this session variable that is
updated by calling a server method (i set this value when the user
hits a submit button in my form. The server method is called when i
load all my asp forms.). I'd like to be able to update this session
variable, without being forced to submit my form or refresh my form
(something that will call my server method each 2 min lets say,
without refreshing my page or submit)...is there anyway to do this???
Maybe a remote scripting with the setinterval() method?? but i'm
having trouble using this with XP and IE 6 !!
Your help is with this matter is higly appreciated!!
Karen Guest
-
#39833 [NEW]: Session variables overwritten by local variables (register_globals=off)
From: sup1382 at accedo dot es Operating system: OpenBSD 3.9 PHP version: 5.2.0 PHP Bug Type: Session related Bug... -
#39447 [NEW]: Want to optionally handle apc_upload_progress variables using session variables
From: krudtaa at yahoo dot com Operating system: All PHP version: 5.2.0 PHP Bug Type: Feature/Change Request Bug... -
Another Session Variables question
Hi Rod, If you're crossing application boundaries, you won't be able to share session state. You can, however, send along some information in a... -
Session problem when setting session variables in files that are in different directories
I am running PHP 4.3.0 on a WinXPpro machine and I recently got problem with sessions. What I am building is a loginsystem and I need to save... -
variables that change session variables
Hi, I'm currently writing a mulit-page form app that uses a session to retain data from each form element in order for the user to jump between... -
Ray at #2
Re: Question on sessionvariables
"Karen" <bambina_carina@yahoo.com> wrote in message
news:a6feda32.0310210730.311e9e0b@posting.google.c om...No. The only "something" that can update the session is the client. In the> Hi there....
> i got a quick one for you guys. i've this session variable that is
> updated by calling a server method (i set this value when the user
> hits a submit button in my form. The server method is called when i
> load all my asp forms.). I'd like to be able to update this session
> variable, without being forced to submit my form or refresh my form
> (something that will call my server method each 2 min lets say,
> without refreshing my page or submit)...is there anyway to do this???
simple world, anyway.
Ray at work
Ray at Guest
-
Michel Thiffault #3
Re: QUESTION ON SESSION VARIABLES
I neevr tried it tu update session variables (I have session variables with
passion) but calling an ASP page with an XMLHTTP call in JavaScript should
work (I never tried though).
"Karen" <bambina_carina@yahoo.com> wrote in message
news:a6feda32.0310210730.311e9e0b@posting.google.c om...> Hi there....
> i got a quick one for you guys. i've this session variable that is
> updated by calling a server method (i set this value when the user
> hits a submit button in my form. The server method is called when i
> load all my asp forms.). I'd like to be able to update this session
> variable, without being forced to submit my form or refresh my form
> (something that will call my server method each 2 min lets say,
> without refreshing my page or submit)...is there anyway to do this???
> Maybe a remote scripting with the setinterval() method?? but i'm
> having trouble using this with XP and IE 6 !!
>
> Your help is with this matter is higly appreciated!!
Michel Thiffault Guest
-
Michel Thiffault #4
Re: QUESTION ON SESSION VARIABLES
Whoa! Typos!
I never tried to update session variables (I hate session variables with
passion) but calling an ASP page from the client using JavaScript and the
XMLHTTP object should work (I never tried it).
That's better, sorry about that!
"Michel Thiffault" <mtifo@h.ot_m.ai_l.com> wrote in message
news:%23l1Opl%23lDHA.3612@TK2MSFTNGP11.phx.gbl...with> I neevr tried it tu update session variables (I have session variables> passion) but calling an ASP page with an XMLHTTP call in JavaScript should
> work (I never tried though).
>
> "Karen" <bambina_carina@yahoo.com> wrote in message
> news:a6feda32.0310210730.311e9e0b@posting.google.c om...>> > Hi there....
> > i got a quick one for you guys. i've this session variable that is
> > updated by calling a server method (i set this value when the user
> > hits a submit button in my form. The server method is called when i
> > load all my asp forms.). I'd like to be able to update this session
> > variable, without being forced to submit my form or refresh my form
> > (something that will call my server method each 2 min lets say,
> > without refreshing my page or submit)...is there anyway to do this???
> > Maybe a remote scripting with the setinterval() method?? but i'm
> > having trouble using this with XP and IE 6 !!
> >
> > Your help is with this matter is higly appreciated!!
>
Michel Thiffault Guest
-
Tim Williams #5
Re: QUESTION ON SESSION VARIABLES
on the client using setinterval:
var img=new Image("http://myserver/updatesession.asp?blah="+escape(new
Date()));
have updatesession.asp do the update to the session variable and then
redirect to a 1x1 gif or something.
The querystring part will force the browser to always make the request
instead of using the cache.
Tim.
"Karen" <> wrote in message
news:a6feda32.0310210730.311e9e0b@posting.google.c om...> Hi there....
> i got a quick one for you guys. i've this session variable that is
> updated by calling a server method (i set this value when the user
> hits a submit button in my form. The server method is called when i
> load all my asp forms.). I'd like to be able to update this session
> variable, without being forced to submit my form or refresh my form
> (something that will call my server method each 2 min lets say,
> without refreshing my page or submit)...is there anyway to do this???
> Maybe a remote scripting with the setinterval() method?? but i'm
> having trouble using this with XP and IE 6 !!
>
> Your help is with this matter is higly appreciated!!
Tim Williams Guest
-
Karen #6
Re: QUESTION ON SESSION VARIABLES
Sorry Tim i don't see how i can accomplish this using with your
example....remember my session variable is updated on the server
so....can you please explain a little bit more?
"Tim Williams" <saxifrax@pacbellremovethis.net> wrote in message news:<eSX2xTAmDHA.3256@tk2msftngp13.phx.gbl>...> on the client using setinterval:
>
> var img=new Image("http://myserver/updatesession.asp?blah="+escape(new
> Date()));
>
> have updatesession.asp do the update to the session variable and then
> redirect to a 1x1 gif or something.
> The querystring part will force the browser to always make the request
> instead of using the cache.
>
>
> Tim.
>
>
>
> "Karen" <> wrote in message
> news:a6feda32.0310210730.311e9e0b@posting.google.c om...> > Hi there....
> > i got a quick one for you guys. i've this session variable that is
> > updated by calling a server method (i set this value when the user
> > hits a submit button in my form. The server method is called when i
> > load all my asp forms.). I'd like to be able to update this session
> > variable, without being forced to submit my form or refresh my form
> > (something that will call my server method each 2 min lets say,
> > without refreshing my page or submit)...is there anyway to do this???
> > Maybe a remote scripting with the setinterval() method?? but i'm
> > having trouble using this with XP and IE 6 !!
> >
> > Your help is with this matter is higly appreciated!!Karen Guest
-
Karen #7
Re: QUESTION ON SESSION VARIABLES
yeah that's better ...kidding...well thanks for your reply...i kinda
know what i should do but don't relay know how i can accomplish
it??...anyway...hoep someone will help me with it!!
"Michel Thiffault" <mtifo@h.ot_m.ai_l.com> wrote in message news:<ezRnFs#lDHA.1728@TK2MSFTNGP11.phx.gbl>...> Whoa! Typos!
>
> I never tried to update session variables (I hate session variables with
> passion) but calling an ASP page from the client using JavaScript and the
> XMLHTTP object should work (I never tried it).
>
> That's better, sorry about that!
>
> "Michel Thiffault" <mtifo@h.ot_m.ai_l.com> wrote in message
> news:%23l1Opl%23lDHA.3612@TK2MSFTNGP11.phx.gbl...> with> > I neevr tried it tu update session variables (I have session variables> > passion) but calling an ASP page with an XMLHTTP call in JavaScript should
> > work (I never tried though).
> >
> > "Karen" <bambina_carina@yahoo.com> wrote in message
> > news:a6feda32.0310210730.311e9e0b@posting.google.c om...> >> > > Hi there....
> > > i got a quick one for you guys. i've this session variable that is
> > > updated by calling a server method (i set this value when the user
> > > hits a submit button in my form. The server method is called when i
> > > load all my asp forms.). I'd like to be able to update this session
> > > variable, without being forced to submit my form or refresh my form
> > > (something that will call my server method each 2 min lets say,
> > > without refreshing my page or submit)...is there anyway to do this???
> > > Maybe a remote scripting with the setinterval() method?? but i'm
> > > having trouble using this with XP and IE 6 !!
> > >
> > > Your help is with this matter is higly appreciated!!
> >Karen Guest
-
Tim Williams #8
Re: QUESTION ON SESSION VARIABLES
Karen,
If you want to run code on the server from the client, you must make a
request. One way to do this is to submit a form - which you *don't* want to
do - an another is to make a reqest by creating an image and setting its src
attribute to an asp page. This asp page has access to the user's session,
so it can update the session variable before returning the image to the
client.
################### client
<HTML>
<HEAD>
<TITLE> Session Update </TITLE>
<script>
var imgURL="http://myserver/updatesession.asp";
var iCount=0;
var tOut;
function doUpdate(){
iCount++;
var img=new Image();
img.src=imgURL+"?blah="+escape(new Date())
img=null;
document.getElementById("dMsg").innerHTML="Updated : "+iCount;
tOut=window.setTimeout("doUpdate()",2000);
}
</script>
</HEAD>
<BODY onload="doUpdate();">
<div id='dMsg'></div>
</BODY>
</HTML>
################ server (updatesession.asp)
<%
session("your_name")=session("your_name")+1
response.redirect "tiny.gif"
%>
OK?
Tim
"Karen" <bambina_carina@yahoo.com> wrote in message
news:a6feda32.0310211350.220311a5@posting.google.c om...news:<eSX2xTAmDHA.3256@tk2msftngp13.phx.gbl>...> Sorry Tim i don't see how i can accomplish this using with your
> example....remember my session variable is updated on the server
> so....can you please explain a little bit more?
> "Tim Williams" <saxifrax@pacbellremovethis.net> wrote in message> > on the client using setinterval:
> >
> > var img=new Image("http://myserver/updatesession.asp?blah="+escape(new
> > Date()));
> >
> > have updatesession.asp do the update to the session variable and then
> > redirect to a 1x1 gif or something.
> > The querystring part will force the browser to always make the request
> > instead of using the cache.
> >
> >
> > Tim.
> >
> >
> >
> > "Karen" <> wrote in message
> > news:a6feda32.0310210730.311e9e0b@posting.google.c om...> > > Hi there....
> > > i got a quick one for you guys. i've this session variable that is
> > > updated by calling a server method (i set this value when the user
> > > hits a submit button in my form. The server method is called when i
> > > load all my asp forms.). I'd like to be able to update this session
> > > variable, without being forced to submit my form or refresh my form
> > > (something that will call my server method each 2 min lets say,
> > > without refreshing my page or submit)...is there anyway to do this???
> > > Maybe a remote scripting with the setinterval() method?? but i'm
> > > having trouble using this with XP and IE 6 !!
> > >
> > > Your help is with this matter is higly appreciated!!
Tim Williams Guest
-
Karen #9
Re: QUESTION ON SESSION VARIABLES
Ok Tim! let me try this and i'll let you know...thanks a lot!
"Tim Williams" <saxifrax@pacbellremovethis.net> wrote in message news:<#dtdVbDmDHA.1096@TK2MSFTNGP11.phx.gbl>...> Karen,
>
> If you want to run code on the server from the client, you must make a
> request. One way to do this is to submit a form - which you *don't* want to
> do - an another is to make a reqest by creating an image and setting its src
> attribute to an asp page. This asp page has access to the user's session,
> so it can update the session variable before returning the image to the
> client.
>
> ################### client
> <HTML>
> <HEAD>
> <TITLE> Session Update </TITLE>
>
> <script>
> var imgURL="http://myserver/updatesession.asp";
> var iCount=0;
> var tOut;
>
> function doUpdate(){
> iCount++;
> var img=new Image();
> img.src=imgURL+"?blah="+escape(new Date())
> img=null;
> document.getElementById("dMsg").innerHTML="Updated : "+iCount;
> tOut=window.setTimeout("doUpdate()",2000);
> }
> </script>
> </HEAD>
>
> <BODY onload="doUpdate();">
> <div id='dMsg'></div>
> </BODY>
> </HTML>
>
> ################ server (updatesession.asp)
>
> <%
>
> session("your_name")=session("your_name")+1
> response.redirect "tiny.gif"
>
> %>
>
> OK?
>
> Tim
>
> "Karen" <bambina_carina@yahoo.com> wrote in message
> news:a6feda32.0310211350.220311a5@posting.google.c om...> news:<eSX2xTAmDHA.3256@tk2msftngp13.phx.gbl>...> > Sorry Tim i don't see how i can accomplish this using with your
> > example....remember my session variable is updated on the server
> > so....can you please explain a little bit more?
> > "Tim Williams" <saxifrax@pacbellremovethis.net> wrote in message> > > on the client using setinterval:
> > >
> > > var img=new Image("http://myserver/updatesession.asp?blah="+escape(new
> > > Date()));
> > >
> > > have updatesession.asp do the update to the session variable and then
> > > redirect to a 1x1 gif or something.
> > > The querystring part will force the browser to always make the request
> > > instead of using the cache.
> > >
> > >
> > > Tim.
> > >
> > >
> > >
> > > "Karen" <> wrote in message
> > > news:a6feda32.0310210730.311e9e0b@posting.google.c om...
> > > > Hi there....
> > > > i got a quick one for you guys. i've this session variable that is
> > > > updated by calling a server method (i set this value when the user
> > > > hits a submit button in my form. The server method is called when i
> > > > load all my asp forms.). I'd like to be able to update this session
> > > > variable, without being forced to submit my form or refresh my form
> > > > (something that will call my server method each 2 min lets say,
> > > > without refreshing my page or submit)...is there anyway to do this???
> > > > Maybe a remote scripting with the setinterval() method?? but i'm
> > > > having trouble using this with XP and IE 6 !!
> > > >
> > > > Your help is with this matter is higly appreciated!!Karen Guest



Reply With Quote

