|
 |
asp_web_howto thread: Variables
Message #1 by Shaun Steckley <SSTECKLEY@P...> on Mon, 19 Mar 2001 11:20:14 -0500
|
|
Is there a way to read the value of a javascript variable from VBScript?
Message #2 by Gregory_Griffiths@c... on Mon, 19 Mar 2001 16:43:00 +0000
|
|
you can use the query string or a form hidden field ?
> -----Original Message-----
> From: SSTECKLEY@P... [mailto:SSTECKLEY@P...]
> Sent: 19 March 2001 16:20
> To: asp_web_howto@p...
> Cc: SSTECKLEY@P...
> Subject: [asp_web_howto] Variables
>
>
> Is there a way to read the value of a javascript variable
> from VBScript?
Message #3 by "Alex Shiell, ITS, EC, SE" <alex.shiell@s...> on Mon, 19 Mar 2001 16:50:53 -0000
|
|
If you're talking about reading a client side variable from the server side,
it has to be submitted back to the server, either through the querystring,
or the form
-----Original Message-----
From: Shaun Steckley [mailto:SSTECKLEY@P...]
Sent: Monday, March 19, 2001 4:20 PM
To: ASP Web HowTo
Subject: [asp_web_howto] Variables
Is there a way to read the value of a javascript variable from VBScript?
Message #4 by Shaun Steckley <SSTECKLEY@P...> on Mon, 19 Mar 2001 11:57:25 -0500
|
|
My dilemma is that I have a frameset page that stores a value in a hidden
tag that I would like to read using VBScript.
The frame housing this hidden tag is static while the other pages are
constantly changing. When I refresh one of the changing frames I need to
read this value to determine what to dynamically create using VBScript...
Any ideas?
-----Original Message-----
From: Gregory_Griffiths@c...
[mailto:Gregory_Griffiths@c...]
Sent: Monday, March 19, 2001 11:43 AM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: Variables
you can use the query string or a form hidden field ?
> -----Original Message-----
> From: SSTECKLEY@P... [mailto:SSTECKLEY@P...]
> Sent: 19 March 2001 16:20
> To: asp_web_howto@p...
> Cc: SSTECKLEY@P...
> Subject: [asp_web_howto] Variables
>
>
> Is there a way to read the value of a javascript variable
> from VBScript?
---
SoftArtisans helps developers build robust, scalable Web applications!
Excel Web reports, charts: http://www.softartisans.com/excelwriter.html
File uploads: http://www.softartisans.com/saf.html
Transactional file management: http://www.softartisans.com/saf1.html
Scalability: http://www.softartisans.com/saxsession.html
ASPstudio value pack: http://www.softartisans.com/aspstudiosuite.html
$subst('Email.Unsub')
Message #5 by Gregory_Griffiths@c... on Mon, 19 Mar 2001 17:24:52 +0000
|
|
If this is client side then you can just query it with an onload
handler, or you can copy the value into your form and then submit as
part of your form.
> -----Original Message-----
> From: SSTECKLEY@P... [mailto:SSTECKLEY@P...]
> Sent: 19 March 2001 16:57
> To: SSTECKLEY@P...; asp_web_howto@p...
> Subject: [asp_web_howto] RE: Variables
>
>
> My dilemma is that I have a frameset page that stores a value
> in a hidden
> tag that I would like to read using VBScript.
>
> The frame housing this hidden tag is static while the other pages are
> constantly changing. When I refresh one of the changing
> frames I need to
> read this value to determine what to dynamically create using
> VBScript...
> Any ideas?
>
> -----Original Message-----
> From: Gregory_Griffiths@c...
> [mailto:Gregory_Griffiths@c...]
> Sent: Monday, March 19, 2001 11:43 AM
> To: ASP Web HowTo
> Subject: [asp_web_howto] RE: Variables
>
>
> you can use the query string or a form hidden field ?
>
> > -----Original Message-----
> > From: SSTECKLEY@P... [mailto:SSTECKLEY@P...]
> > Sent: 19 March 2001 16:20
> > To: asp_web_howto@p...
> > Cc: SSTECKLEY@P...
> > Subject: [asp_web_howto] Variables
> >
> >
> > Is there a way to read the value of a javascript variable
> > from VBScript?
>
>
> ---
> SoftArtisans helps developers build robust, scalable Web applications!
> Excel Web reports, charts:
http://www.softartisans.com/excelwriter.html
File uploads: http://www.softartisans.com/saf.html
Transactional file management: http://www.softartisans.com/saf1.html
Scalability: http://www.softartisans.com/saxsession.html
ASPstudio value pack: http://www.softartisans.com/aspstudiosuite.html
$subst('Email.Unsub')
---
SoftArtisans helps developers build robust, scalable Web applications!
Excel Web reports, charts: http://www.softartisans.com/excelwriter.html
File uploads: http://www.softartisans.com/saf.html
Transactional file management: http://www.softartisans.com/saf1.html
Scalability: http://www.softartisans.com/saxsession.html
ASPstudio value pack: http://www.softartisans.com/aspstudiosuite.html
gregory_griffiths@c...
$subst('Email.Unsub')
|
|
 |