D
Dica
i understand the concept of serialization of objects, but do i really need
to worry about this as a web developer? i tend to pass my BED (business
entity definition) objects between pages by storing in session as in:
oUser.firstName = 'whatever';
oUser.lastName = 'whatever_last';
Session["oUser"] = oUser;
Response.Redirect 'nextPage.aspx';
at the end of my web apps life, any data i really needed to persist would be
saved to sql server. is there any reason i should consider serializing
things instead of following my normal course? i'm getting ready to take my
MCTS exam shortly and would like to incorporate everything i've learned into
my day to day application development, but don't see a practical application
for serialization.
to worry about this as a web developer? i tend to pass my BED (business
entity definition) objects between pages by storing in session as in:
oUser.firstName = 'whatever';
oUser.lastName = 'whatever_last';
Session["oUser"] = oUser;
Response.Redirect 'nextPage.aspx';
at the end of my web apps life, any data i really needed to persist would be
saved to sql server. is there any reason i should consider serializing
things instead of following my normal course? i'm getting ready to take my
MCTS exam shortly and would like to incorporate everything i've learned into
my day to day application development, but don't see a practical application
for serialization.