I've got a simple javascript object that represents a small portion of
a page.
I'd like to "serialize" these objects into something I can then parse
up with asp.net and c# on the other end.
I've got the remote scripting portion all setup and it works great.
My question is... if I have an object that looks like the following
Card->Name
->Address
->Phone
->Notes
How can I convert that to a simple string to send to a server. I could
do it manually eg, write a Card.Serialize( ) method that simply wraps it
in generic XML, but is there anyway I can do it automatically.. . that
works in IE and FF?
Thanks very much in advance!
Weston
a page.
I'd like to "serialize" these objects into something I can then parse
up with asp.net and c# on the other end.
I've got the remote scripting portion all setup and it works great.
My question is... if I have an object that looks like the following
Card->Name
->Address
->Phone
->Notes
How can I convert that to a simple string to send to a server. I could
do it manually eg, write a Card.Serialize( ) method that simply wraps it
in generic XML, but is there anyway I can do it automatically.. . that
works in IE and FF?
Thanks very much in advance!
Weston
Comment