How to pass arrays Between the Browser and an ASP.Net Page?

  • Thread starter Thread starter KenBell
  • Start date Start date
K

KenBell

Hi all,

I'm writing an ASP.Net application, however I'm trying to put some of the
functionality onto the client to avoid postbacks to the server wherever
possible.

This being the case, could anyone give me any advice on how, once a postback
to the server is finally made, it would be possible to retrieve data that is
stored in Javascript arrays on the client?

Any help would be much appreciated.


Thanks & regards,

Ken.
 
At some time you'll have to put this in (hidden) form field(s) before
submitting the form... Fields are posted to the server (and passing this on
the query string is unlikely convenient).

Patrice
 
Back
Top