I can create an object and then bind data to my asp.net web form fairly easily by doing this:Code behind:\[code\]Car = CarFactory.GetCar(CInt(_carID))Page.DataBind()\[/code\]And on my web form:\[code\]asp:Label ID="lblParts" runat="server" Text='<%# Car.PartsList%>' />\[/code\]I was wondering if there is a related method to take the data from the web form and then update the object without having to do a bunch of:\[code\]If Not String.IsNullOrEmpty(tbCarName.Text) Then Car.DisplayName = tbCarName.Text\[/code\]Thanks!