On 24 Mar 2006 15:45:28 -0800,
(E-Mail Removed) wrote:
> Question:
> How do I manipulate (reference) an object on a form (.aspx) in ASP.NET
> 2.0 from a class? There are articles on how pass values between forms
> etc etc but I really never figured that out which is really bad I
> guess!
I think your premise is flawed. You shouldn't be trying to manipulate a
form from a middle tier class. That's the entire point of middle tier, to
seperate logic from presentation.
A form should call into your object to get it's data. The data should not
call into the form. Get the picture?