On 2/5/06, M.C. <[EMAIL PROTECTED]> wrote: > Question? Since the frmPage doesn't post back to itself, how do I save > the page record? Do I have to create the page record again and then save > like below or is there a better way?
Even if the form did post back to itself you'd have to create the record again - you create it and store it in variables scope which gets recreated with each page request. It's a small overhead so I wouldn't worry about it. If you really find it to be performance critical then you could always store the record in session scope instead of variables scope... -- Sean A Corfield -- http://corfield.org/ Got frameworks? "If you're not annoying somebody, you're not really alive." -- Margaret Atwood

