I am trying to initialize an application that runs in IIS 7 and I cannot start it because I receive the following error:
Object reference not set to an instance of an object error
eInitWizard.frmMain.CreateVirtualDirectories()
eInitWizard.frmMain.DoObjective()
eInitWizard.frmMain.wpResume_CloseFromNext(Object sender, PageEventArgs e)
What can be the cause of that error?
You are getting this error, because you are trying to use an object that is nothing/null.
Start with the CreateVirutalDirectories. Put in a breakpoint at the top of that method and step through line by line till you find where the nothing.null reference is.
It should not take long to find out what the problem is.