View page (DispForm.aspx) is incorrectly linked to Sharepoint list

I have a list box with custom versions of NewForm.aspx, EditForm.aspx and DispForm.aspx. The list is over a year old and contains about 1,700 lines.

Earlier I made minor changes to DispForm.aspx and it seems that the list has lost its connection with DispForm.aspx as the default view page. Links from all points of view now point to "site /? ID = 123" instead of "site / SubSite / List / DispForm.aspx? ID = 123".

I used Sharepoint Designer to reapply settings for which files are associated with actions, but it doesn't work.

The site is running on multiple servers and I suspect the changes might not be applied until the service is restarted (this was the case for some other changes in the past), but hopefully someone has some ideas.

Unfortunately, I only have remote access via SPD and no privileges outside of a specific site.

Update: It looks like my google-fu was weak before, but I believe I found a possible solution   here .

+2


source to share


1 answer


This solution worked for me: http://moblog.bradleyit.com/2008/10/broken-sharepoint-list-forms.html

Short description: Create a new GUID for ListFormWebPart

<WebPartPages:ListFormWebPart runat="server" __MarkupType="xmlmarkup" WebPart="true" __WebPartId="{NEW_GUID}" >

      



This GUID is also used in the -tag inside the ListFormWebPart:

<ID>g_NEW_GUID</ID>

      

+1


source







All Articles