472,119 Members | 2,045 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,119 software developers and data experts.

Assign Javascript value to asp session variable

Hi ,

I have the following javascript codes:
******************************************
<script language="JavaScript">
<!--
....
.....
if (nextRow >5)
{
<%Session("txtTotal")=%= nextRow;

for (var i=1; i<NewTotalRow; i++) {
<%

'session("txtBeginDT" & i) =
'session("txtEndDT" & i) = %>
}

}

....
....
// -->
</script>
******************************************
Does any one know if we can assign a javascript value to a asp session
variable?
eg [<%Session("txtTotal")=%= nextRow; ]
is this correct ?

regards
philin

Oct 9 '06 #1
4 19854
I assume this is a client side script. You won't have (at least directly)
access to session variables stored on the server when running client side
code.

A usual way to transmit client side computed values to the server is to
store them in hidden fields that will the be read server side on the next
submit (you need a server round trip whatever method you wan't to use)...

--
Patrice

<ph*******@gmail.coma écrit dans le message de news:
11**********************@k70g2000cwa.googlegroups. com...
Hi ,

I have the following javascript codes:
******************************************
<script language="JavaScript">
<!--
...
....
if (nextRow >5)
{
<%Session("txtTotal")=%= nextRow;

for (var i=1; i<NewTotalRow; i++) {
<%

'session("txtBeginDT" & i) =
'session("txtEndDT" & i) = %>
}

}

...
...
// -->
</script>
******************************************
Does any one know if we can assign a javascript value to a asp session
variable?
eg [<%Session("txtTotal")=%= nextRow; ]
is this correct ?

regards
philin

Oct 9 '06 #2

<ph*******@gmail.comwrote in message
news:11**********************@k70g2000cwa.googlegr oups.com...
Hi ,

I have the following javascript codes:
******************************************
<script language="JavaScript">
<!--
...
....
if (nextRow >5)
{
<%Session("txtTotal")=%= nextRow;

for (var i=1; i<NewTotalRow; i++) {
<%

'session("txtBeginDT" & i) =
'session("txtEndDT" & i) = %>
}

}

...
...
// -->
</script>
******************************************
Does any one know if we can assign a javascript value to a asp session
variable?
eg [<%Session("txtTotal")=%= nextRow; ]
is this correct ?
No. Javascript in this case is running in the browser on the client. It
has no access to the session object which is on the server. Your need to
either include this value in a Form field that is submited to the server or
use another means to send the value from the client to the server. Perhaps
the best solution is to reconsider the design and remove this requirement
all together.
regards
philin

Oct 9 '06 #3
thanks guys..

i think i will have to use hidden fields..there are new methods like
ajax but not so familiar with it..Hidden fields the problem is the
value can be seen(right click view source) tats why I was thinkin of
using the session variable...looks like no other solution :)

Anthony Jones wrote:
<ph*******@gmail.comwrote in message
news:11**********************@k70g2000cwa.googlegr oups.com...
Hi ,

I have the following javascript codes:
******************************************
<script language="JavaScript">
<!--
...
....
if (nextRow >5)
{
<%Session("txtTotal")=%= nextRow;

for (var i=1; i<NewTotalRow; i++) {
<%

'session("txtBeginDT" & i) =
'session("txtEndDT" & i) = %>
}

}

...
...
// -->
</script>
******************************************
Does any one know if we can assign a javascript value to a asp session
variable?
eg [<%Session("txtTotal")=%= nextRow; ]
is this correct ?

No. Javascript in this case is running in the browser on the client. It
has no access to the session object which is on the server. Your need to
either include this value in a Form field that is submited to the server or
use another means to send the value from the client to the server. Perhaps
the best solution is to reconsider the design and remove this requirement
all together.
regards
philin
Oct 9 '06 #4

<ph*******@gmail.comwrote in message
news:11**********************@k70g2000cwa.googlegr oups.com...
thanks guys..

i think i will have to use hidden fields..there are new methods like
ajax but not so familiar with it..Hidden fields the problem is the
value can be seen(right click view source) tats why I was thinkin of
using the session variable...looks like no other solution :)
Being able to see internal values on the client is not a real problem.
There's nothing stopping the user debugging and single stepping your code.
So if you really do have something that a user must never be able to see, a
browser based solution is not for you.

>
Anthony Jones wrote:
<ph*******@gmail.comwrote in message
news:11**********************@k70g2000cwa.googlegr oups.com...
Hi ,
>
I have the following javascript codes:
******************************************
<script language="JavaScript">
<!--
...
....
if (nextRow >5)
{
<%Session("txtTotal")=%= nextRow;
>
for (var i=1; i<NewTotalRow; i++) {
<%
>
'session("txtBeginDT" & i) =
'session("txtEndDT" & i) = %>
}
>
}
>
...
...
// -->
</script>
******************************************
Does any one know if we can assign a javascript value to a asp session
variable?
eg [<%Session("txtTotal")=%= nextRow; ]
is this correct ?
>
No. Javascript in this case is running in the browser on the client.
It
has no access to the session object which is on the server. Your need
to
either include this value in a Form field that is submited to the server
or
use another means to send the value from the client to the server.
Perhaps
the best solution is to reconsider the design and remove this
requirement
all together.
regards
philin
>

Oct 9 '06 #5

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

reply views Thread by Gowhera Hussain | last post: by
3 posts views Thread by M Wells | last post: by
12 posts views Thread by Kurda Yon | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.