
Passing Form Fields to VB.NET Custom Business Object in an ASP.NET Code Behind Page
Given a .NET class implemented in BusinessObject.vb, and instantiated in the
codebehind page of an ASPX file... How would I pass all of the fields that
were posted back to the ASPX page, to the business component:
*** Code Behind Page for an ASPX File ***
objDB = New Crouch.BusinessObject()
objDB.Connection = ConfigurationSettings.AppSettings("ConnectionString")
objDB.Update(Request.Form) '???
*** End Code Behind Page for an ASPX File ***
Regards,
-Robert