|
|
|
|
|
| | |
|
vbscript active server pages ASP vbscript SQL database informix oracle SQL Server Perl CGI Delphi PHP source code code sample samples program CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: Communicating with the client and the server? |
From: |
Kal |
Date: |
10/18/1999 1:36:01 PM |
IP: |
131.107.3.72 |
I also had the same problem. But i did it in a couple of different ways. I am not sure whether that will help in any way for you or not.
1.. Have some hidden variables within the form on the client side.
<form name=client>
...
...
<input type=hidden name=linktoserver>
...
</form>
if you write a client script that has some values that need to passed to the server script then assign those values to these hidden variables. On the server get these values from the variables assigned on the form using request(linktoserver).
2.. You can call some server fns within the client like
sub window_onload()
<client script ....>
<% write server script here %>
and so on and here if you need to pass values from server to client you can say
someclentvarname = <% =someservervarname %>
end sub
Hope this helps.
Kal |
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|