FIX: Edit Console Disappears When You Switch the Pages in an ASP Frame Site (330819)



The information in this article applies to:

  • Microsoft Content Management Server 2002

This article was previously published under Q330819

SYMPTOMS

After you migrate the Microsoft Content Management Server (MCMS) Method Systems sample site from MCMS 2001 to MCMS 2002, the edit console may disappear when you are in Edit mode.

CAUSE

Because of an incorrect script in the CMS 2001 Method System sample, wbc_purpose=Basic querystring parameters are not propagated when the navigation URLs are generated in the navigation frame.

RESOLUTION

In the Extranet1Home.asp file of the Method System sample site, comment out the line where the strCoverPageWBCFix variable is set.

To do this, change the code from
Dim strCoverPageWBCFix

If AutoSession.This.IsChannel Then
  
   If AutoSession.IsModeUnpublished Then

      strCoverPageWBCFix = "&wbc_Purpose=Basic"

   End If

End If
				
to:
Dim strCoverPageWBCFix

If AutoSession.This.IsChannel Then
  
   If AutoSession.IsModeUnpublished Then

      'strCoverPageWBCFix = "&wbc_Purpose=Basic"

   End If

End If
				

STATUS

Microsoft has confirmed that this is a bug in the Microsoft products that are listed at the beginning of this article.

MORE INFORMATION

A script that exists in the MCMS 2001 Method Systems sample site is not necessary for MCMS 2002. You only see this problem if you have migrated the Method Systems sample site because this script is not included with MCMS 2002.

Modification Type:MajorLast Reviewed:10/25/2002
Keywords:kbbug KB330819