ASP.NET Compilation Error

Associate
Joined
20 Jan 2005
Posts
386
Location
Crewe, Cheshire
Hi folks,

Need some help. I've created an ASP.NET site, which works fine locally, but after publishing it to the server it comes up with the following compilation error:

Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: BC30002: Type 'IWizardStep' is not defined.

Source Error:



Line 27: plhWizardStep.Controls.Clear()
Line 28: plhWizardStep.Controls.Add(_currentStep)
Line 29: CType(_currentStep, IWizardStep).LoadStep()
Line 30: ltlStep.Text = String.Format("Online Application Form - Step {0} 0f {1}", StepIndex + 1, _wizardSteps.Count)
Line 31: End Sub

The IWizardStep is a vb class I created and placed in the App_Code folder.

Am I missing something somewhere?

Thanks
 
Back
Top Bottom