Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > Accessing Server Variables from the Client Browser

Reply
Thread Tools

Accessing Server Variables from the Client Browser

 
 
BuddyWork
Guest
Posts: n/a
 
      10-26-2005
Hello,

I want to be able to client process of the ASP page to get the value
populated in Request("rssFeed"), how can I do this because the Request
object is not available to the Client-side.

Thanks

 
Reply With Quote
 
 
 
 
Tom Kaminski [MVP]
Guest
Posts: n/a
 
      10-26-2005
"BuddyWork" <> wrote in message
news: oups.com...
> Hello,
>
> I want to be able to client process of the ASP page to get the value
> populated in Request("rssFeed"), how can I do this because the Request
> object is not available to the Client-side.


Have your ASP write it out into some client-side script:

Response.Write "<script language='vbscript'>"& vbcrlf
Response.Write "rssFeed = " & Request("rssFeed") & vbcrlf
....

--
Tom Kaminski IIS MVP
http://www.microsoft.com/windowsserv...y/centers/iis/
http://mvp.support.microsoft.com/
http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS


 
Reply With Quote
 
 
 
 
Curt_C [MVP]
Guest
Posts: n/a
 
      10-26-2005
Get the value(s) you want and place them directly into the clientside code
<script....>
blah = <%= serverBlah %>;
</script>
--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com



"BuddyWork" wrote:

> Hello,
>
> I want to be able to client process of the ASP page to get the value
> populated in Request("rssFeed"), how can I do this because the Request
> object is not available to the Client-side.
>
> Thanks
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
session variables, accessing from client side java script ray well ASP .Net 8 11-15-2008 07:14 AM
Put variables into member variables or function variables? tjumail@gmail.com C++ 9 03-23-2008 04:03 PM
Server to server = Server client to server? - Java 2 07-29-2005 10:46 PM
Accessing class member variables - properties or variables? dwok Java 7 03-04-2005 03:54 AM
client-side browser timeout OR server-side web server timeout?? (please help) jrefactors@hotmail.com Java 0 01-04-2005 04:06 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57