I am going to answer my own post so the next guy who's head is not on right, doesn't have the issue.
Top of that file add the USING statements:
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Threading;
using CMS.GlobalHelper;
using CMS.CMSHelper;
using CMS.SettingsProvider;
using CMS.DataEngine;
using CMS.EventLog;
using CMS.SiteProvider;
using CMS.PortalEngine;
using CMS.FormEngine;
using CMS.IO;
using CMS.URLRewritingEngine;
using CMS.WorkflowEngine;
Then you will have the code as:
public override void Init()
{
{
// -- This line provides the ability to register the classes via web.config cms.extensibility section from App_Code
ClassHelper.OnGetCustomClass += ClassHelper_OnGetCustomClass;
}
{
ObjectEvents.Insert.After +=new EventHandler<ObjectEventArgs>(Insert_After);
}
}
public void Insert_After(object sender, ObjectEventArgs e)
{
if (e.Object.ObjectType.ToLower() == "bizformitem.bizform.form2")
{
e.Object.SetValue("formvalue", HttpContext.Current.Request.QueryString["value"]);
e.Object.Update();
}