Wiki Pages - Open Web Part Page in maintenance view

I am trying add custom .aspx pages to a SharePoint 2010 Document Library.  When I try to edit properties for those pages, the edit page shows "Open Web Part Page in maintenance view to delete problem Web Parts and remove personal settings.
Open Web Part Page in maintenance view."  I click Open Web Part Page in maintenance view
The page displays
The are currently no Web Parts associated with any Web Part Zones on this page.  Web Parts added to the page outside of a Web Part Zone will not appear in this list.
I don't do anything with the maintenance view because there are no Web Parts to delete.
As a test, I save the content of the custom.aspx page as a text file, custom.txt.  The edit properties displays just fine.
Another test, I save the content as custom.htm.  The edit properties displays just fine.
I try many variations of saving the content of custom.aspx with various html tags and even no tags at all.  One version just has the text,"test" in the page.  Save error:
Open Web Part Page in maintenance view to delete problem Web Parts and remove personal settings.  Open Web Part Page in maintenance view." 
Going down another path, I try to compare the source of this aspx page with other SharePoint aspx pages.  One test is the Wiki Page.  All Wiki pages display the same message on my farm.  Is this a known issue with Wiki Pages?
<apparently I'm not allowed to add images yet>
As another point of comparison I opened the Edit Properties part within an Office 365 Wiki.  Same message.
<apparently I'm not allowed to add images yet>

Hi Chris,
As your description, when you uploaded a .aspx page into a library and edited the properties, the message "Open Web Part Page in maintenance view to delete problem Web Parts and remove personal settings.  Open Web Part Page in maintenance view"
showed.
I could reproduce this issue if I uploaded a .aspx page into a library and edited its properties.
Then I went to Site Pages library, and select a page and edit its property, the same message also showed like the screenshot:
It seems that the message will show when we edit the properties of a page no matter which library we upload it to, it seems to be by design.
In addition, if you want to upload a image into the thread, you can first upload the image into OneDrive, then copy and paste the URL of the image here.
Thanks,
Wendy
TechNet Community Support
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
[email protected]

Similar Messages

  • Can i hide "Open Web Part Page in maintenance view" link when editing wiki page properties

    I am working on an Enterprisewiki site collection inside SP 2013, and currently when contributor users edit the wiki page properties by going to "Page Option >> Edit Properties" , then will find the following link, named "Open Web Part
    Page in maintenance view" which sound strange :-
    so can anyone advice what is the purpose of this link and how i can remove it ?

    Hi,
    If someone wants to open a wiki page in Web Part maintenance view then they can directly use this link to switch into the view and can directly delete problematic webparts from there.
    To remove this link, you can try below jquery code in Content Editor webpart on Editform.aspx of wiki page library.
    <script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.1.min.js"></script>
    <script>
    $(document).ready( function (){
    $("a[id$='WebPartMaintenancePageLink']").hide();
    $("a[id$='WebPartMaintenancePageLink']").parent('td').parent('tr').hide();
    </script>
    Thanks. Please mark it as an answer if it helps.

  • Under Site Contents - Where is the add a Page or Web Part Page option.

    It seems the only way to add a page to a site is to create a document library first.

    Where is the SitePages Document Library.
    Up next to SkyDrive I click Sites. I select "My Child Site" It is a brand new site. Under the Cog there is Shared With, Edit Page, Add an app, view site contents and getting started. On the left I have Home, Site contents. If I go into Site contents I have
    the option of Lists, Libraries and other Apps or the option to create a new subsite. 
    Just to be sure I clicked Create a new Subsite". Once it is up I still don't have an option to create a page. And under the Cog I have the same settings as before.
    It seems like I have to create a document library app, create a page in the library, Add the app as a web part to the home page and then have a lot of clutter from the document library app. e.g. +new document or drag files here, current view... As opposed to
    a list of links to the pages. 
    It seems like a site should also be a document library or list to begin with. 
    I could swear in 2010 when you were in a new site you could could click create a page from the home page.

  • Copying a web part page into a new wiki page

    Is it possible to copy a web part page (homepage of a team site) to a new wiki page on a team site?  Can this be accomplihed without SharePoint Designer?  If it is possible, how do I go about it?
    Thanks for you help!

    Hi,
    You may use powershell script in order to copy et move your page to another location.
    Have a look at this :
    https://gallery.technet.microsoft.com/office/Copy-all-SharePoint-Files-0999c53f
    Best regards.

  • Create custom web-part page with OOTB page layout using CSOM (Javascript)

    Hi,
    I need to create a custom webpart page with a OOTB page layout (eg. Header 3 column footer) using JSOM.
    I found a link to do this using CSOM: http://spdevlab.com/2013/03/28/creating-wiki-web-part-and-publishing-pages-via-csom-in-sharepoint-2010/
    But here i have to copy the page template from 15 hive and store it in a resource file and I am also getting error as "The request message is too big" and to fix this I need to run a powershell script but I need the code to run in SharePoint online
    also.
    Isn't there a simpler piece of code in which I can enter the name of the page layout(OOTB/Custom) while creating a page in JSOM as we have in SSOM?
    Thanks for the help
    sunny

    Hi,
    According to your post, my understanding is that you want to create a custom web part page layout template.
    There are some articles about how to create the custom web part page layout template, you can refer to them.
    http://www.manageprojectsonsharepoint.com/blog/2011/03/14/creating-your-own-web-part-page-layout-template/
    http://sandeeppawar.blogspot.com/2012/06/create-custom-web-part-page-template.html
    http://doitwithsharepoint.blogspot.com/2011/08/create-web-part-pages-with-custom.html
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Sharepoint web part Page Load issue

    Hi ,
     We are developing Sharepoint 2013 Integration application, We are fetching the data from third party application and dumping data into sharepoint List for offline analysis.
    Synchronization steps
    1) fetch data from third party application
    2) delete the old data
    3) Insert the new data in List
    4) Show the data in custom web part 
    synchronization is taking lot of time, is there any profiling  tools , we can measure the performance of method , network traffic which is causing the issue.
    We need to load the page less than second
    Regards
    Pat

    Hi,
    Per my understanding, you might want to improve the performance of your web part page.
    A suggestion is that you can create a custom Timer job in the server side which handles the data fetching and updating in a list in the backend periodically, the burden
    on the custom web part would get decreased.
    About create and deploy Custom Timer Job Definition in SharePoint Programmatically:
    http://www.codeproject.com/Tips/634208/Create-and-Deploy-Custom-Timer-Job-Definition-in-S
    Thanks 
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Using "View Selector" in the List View Web Part, changes the web part page to the view selected's page.

    Hi,
    I am relatively new to Web Parts pages.  I created a page with list view web part and a Infopath Form Web Part, which are connect via the "Get Form From" option.  My users would like to be able to use views dependent on what
    they are looking for.  So I created different views.  However, when I select the view from within the Web Part, it changes the web part page to the list view page.  I must be doing something wrong.  How do I configure the list view to show
    the selected view and results within the existing "list view web part"?
    Thanks,
    Dwayne

    Hi
    Lindali,
    Sorry, but this has not been answered to my liking.  The "List View Web Part" has the ability for the user to select the view from within the web part, so there you should be able to select a different view and have it appear within the same web part. 
    Does anyone know how to complete this task?
    Thanks,
    Dwayen

  • SharePoint 2013 and IE 11 issue - While creating a Web Part Page and Editing Web Part Properties

    I tried to edit a Web Part in SharePoint 2013 using IE 11 but I did not see the Edit Eeb Part dropdown menu at the top-right corner of the web part. Then I tried to create a Web Part page and I get the following error.
    Cannot create a Web Part Page with the current browser. Browsers that support the creation of Web Part Pages include Microsoft Internet Explorer 7.0 or later, Mozilla Firefox 3.0 or later, and Apple Safari 3.0 or later
    Strange !!! My web browser is IE 11.
    I tried the above two tasks in Google Chrome and worked fine.
    Solution:
    I added the site url to local intranet zone in IE 11 and I am now able to add Web Part Page and Edit Web Part in IE 11.
    imd.net

    Hi - One more solution is to add SharePoint site to compatibility group:
    http://blog.fpweb.net/sharepoint-internet-explorer-compatibility-issues-with-video/#.VAaZSPmSyy4
    -prs

  • Issue while creating a new web part page (Safeunit.aspx) within a folder located under a Document Library.

    Hi, I am facing an issue while creating a new web part page (Safeunit.aspx) within a folder (Safematic Seal Support Systems) located under a Document Library (Product Information Documents).
    The path I am explaining:
    Going to the Document Library (Product Information Documents) --> now inside that, clicking on a folder (Wet Seal Support
    Systems) --> now inside the folder clicking on another sub-folder (Safematic Seal Support Systems) --> Here I want the web page Safeunit.aspx
    Issue is that when I reach to the required destination, and want to create the web page by clicking on 'Site Action' --> 'Create' --> 'Web Part Page', now while selecting the Document Library name from the drop-down list, I do use 'Product
    Information Documents' since the folder is inside this library only; but that create the page directly under the 'Product Information Documents' library, not under the sub-folder (Safematic Seal
    Support Systems).
    FYI, it is SP2007 version.
    Kindly assist in this. Thanks in advance.

    I see that you have the namespaces reference in your code.
    I think you have changed the NameSpace name of your code to CreateSPFolder, change the reference in all your manifest, and other files to point to the current namespace name. It should help.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • Creation of Web Part page error in SharePoint subsite

    Hi Friends,
     When i was try to create webpart page( in out of the box)SharePoint Subside it throws error.
    I checked logs i finally got error information like
    System.ArgumentException: An entry with the same key already exists.  
     at System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)   
     at System.Collections.Generic.SortedList`2.Add(TKey key, TValue value)   
     at ASP._layouts_spcf_aspx.__Render__control42(HtmlTextWriter __w, Control parameterContainer)   
     at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
     at ASP._controltemplates_inputformcontrol_ascx.__Render__control1(HtmlTextWriter __w, Control parameterContainer)   
     at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
     at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
     at ASP._controltemplates_inputformsection_ascx.__Render__control1(HtmlTextWriter __w, Control parameterContainer)   
     at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
     at ASP._layouts_spcf_aspx.__Render__control17(HtmlTextWriter __w, Control parameterContainer)   
     at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
     at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
     at System.Web.UI.HtmlControls.HtmlContainerControl.Render(HtmlTextWriter writer)   
     at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
     at System.Web.UI.HtmlControls.HtmlForm.RenderChildren(HtmlTextWriter writer)   
     at System.Web.UI.HtmlControls.HtmlForm.Render(HtmlTextWriter output)   
     at System.Web.UI.HtmlControls.HtmlForm.RenderControl(HtmlTextWriter writer)   
     at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
     at System.Web.UI.HtmlControls.HtmlContainerControl.Render(HtmlTextWriter writer)   
     at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
     at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
     at Microsoft.SharePoint.WebControls.UnsecuredLayoutsPageBase.RenderChildren(HtmlTextWriter writer)   
     at System.Web.UI.Page.Render(HtmlTextWriter writer)   
     at Microsoft.SharePoint.WebControls.UnsecuredLayoutsPageBase.Render(HtmlTextWriter writer)   
     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    This issue i faced only in Sub site of the site collection.
    i  am able to create  to  web part page in Root site and other sub sites in same site collection.
    This is challenging issue in SharePoint 2010 .
    Help me.
    Badri

    Hi Badri,
    Are you using any custom master page ?
    Which template you used to create sub site ?
    Let us know your results, thanks
    Regards,
    Pratik Vyas | SharePoint Consultant |
    http://sharepointpratik.blogspot.com
    Posting is provided AS IS with no warranties, and confers no rights
    Please remember to click Mark As Answer if a post solves your problem or
    Vote As Helpful if it was useful.

  • Why can't I create a BI Web Part Page in the folder I am currently in

    When I am in my Report Library\Finance and select New Document>BI Web Part Page it takes me to a form with only three options Name, Layout and Save Location. Makes sense, but why doesn't the save location offer "Current Location" as an option.
    Right now I have to save to "Library" which puts the page in the root and then move it via windows explorer.

    Hi,
    From your description, you might have a “Finance” folder in the Report Library, then you want to create a web part page and save in this “Finance” folder by default.
    I tried to reproduce like this: I go into the “Finance” folder, then create a web part page, in the “Location” group, it set the “Folder” as the current folder.
    What if you create a new Report Library and do the test again, will the “Location” be set as the current folder?
    Feel free to reply with the test result.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they
    help and unmark them if they provide no help. If you have feedback for TechNet
    Subscriber Support, contact [email protected]
    Patrick Liang
    TechNet Community Support

  • Discussion Board item not displaying in web part page

    Hi, I am using SharePoint 2013 on-premise. I created new Discussion Board name as "Discuss" and displayed in
    Management View as shown below.
    The list item showing properly without any issues.
    But when i am adding this web-part into web part page with Management
    view. The items are not displaying.
    What is the issue.? How to display the items here.?
    Thanks in advance.

    Hi Ismaiel,
    The Discussion Board is in same site.
    If displaying the web-part page with Subject view the items are visible.
    But when i am changing the view to Management the items are hidden.

  • Web Part Page check in problem

    I created a simple web part page that contains a web page viewer web part.  I filled out all available fields during creation.  It was stored in the default Shared Documents folder.  I can link to the web part page with no problems.  However, others can't because it is check out to me.  When I try to check it in, I get the "You must fill out all required properties before checking in this document" error.  When I click "Edit Properties", everything is filled out.  I noticed that if I click "View Properties", a "Title" field is visible.  How can I fill this out???  It wasn't available during creation and I have no idea how to fill it out because it doesn't show up after clicking "Edit Properties.  This seems really buggy.

    I currently have this problem running wss3.0 in a portal I have created. Two existing document libraries contain web part pages which do not require check in/check out. However in the last day or two, every new page created is automatically checked out to myself, but I cannot check the item back in. I have the following show up:
    "You must fill out all required properties before checking in this document."
    I have followed the procedures above to add the web part as an extra content type to the list, and hiding the title column so its not needed, but i still receive this error message. It only seems to be happening on this particular portal, and not others. The fact exisitng pages in the document library do not require items to be checked out makes it very frustrating trying to resolve. Ive searched TechNet but cant find any more details. I've even tried to force check in using Sharepoint Designer but this also does not work.
    Does anyone have any ideas? Every new document library i create contains checked out items for this portal now, so others cannot view.
    thanks,

  • How to publish Web parts page in Share point server 2010

    Hi All,
    I have created Web parts page in share point server 2010. it working fine but it always displayed with Ribbon controls and other tool bars, if there any possibility to publish web parts page, here user able to view content only not editing option.
    I already enabled 'SharePoint Server Publishing Infrastructure' in site collection level and 'SharePoint Server Publishing' in site level.
    Here i only find publish menu for pages not for web parts page.
    Kindly advice how to publish web parts pages.
    Thanks,
    Selvakumar.S

    Just remove Edit permission of users on that page, then they wont be able to see edit options
    http://office.microsoft.com/en-in/sharepoint-help/what-is-permissions-inheritance-HA102772762.aspx
    http://office.microsoft.com/en-in/sharepoint-foundation-help/edit-permissions-for-a-list-library-or-individual-item-HA101805400.aspx
    If this helped you resolve your issue, please mark it Answered

  • ? best book for understanding & modifying "Web Part Page" constructs and syntax i.e. WebPartPages:XsltListViewWebPart

    Hello can anyone recommend an in depth "hands on" book or paper for understanding & modifying "Web Part Page" constructs and syntax elements i.e. <WebPartPages:XsltListViewWebPart
    <WebPartPages:XsltListViewWebPart runat="server" AllowHide="True" PartImageSmall="" PartOrder="4" Title="Time" ManualRefresh="False" ViewGuid="{7C672E08-B5D5-435D-A8FE-AB84E97099B1}" 
    So far i've bought every Sharepoint Developer 2007/2010 book available, but none seem to really cover the layout and structure of the XSL methods in enough detail!
    Thanks for any recommendations, links or white paper references ect!

    Hi,
    XsltListViewWebPart is a class that handles view rendering for default lists, such as document libraries and announcements, and it is inherited from Microsoft.SharePoint.WebPartPages namespace.
    Please check the link below for understanding the elements used in the XsltListViewWebPart class:
    http://msdn.microsoft.com/en-US/library/microsoft.sharepoint.webpartpages.xsltlistviewwebpart_members
    More references about XsltListViewWebPart in SharePoint:
    http://msdn.microsoft.com/en-us/library/office/ff604021(v=office.14).aspx
    http://msdn.microsoft.com/library/microsoft.sharepoint.webpartpages.xsltlistviewwebpart
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

Maybe you are looking for