Tagged Questions
The webpartpage tag has no wiki summary.
2
votes
1answer
731 views
GetUsageData() in a web part returns null
I am trying to display some SharePoint usage data in a web part.
Here's my code:
SPSite spSiteCollection = new SPSite(myURL)
spSiteCollection.CatchAccessDeniedException = false;
SPWeb spWeb = ...
1
vote
2answers
332 views
SharePoint 2010 WebPart Personalize Layout
I have a homepage on an Intranet. It has at 15+ webparts (news, weather, etc.) I want to allow the users to customize the page by moving the webparts around or deleting them. At present I don't let ...
1
vote
1answer
92 views
Adding description to WebPartPage when creating the page
I am following this (http://msdn.microsoft.com/en-us/library/ms450826.aspx) method to add a webpartpage (samplewpp.aspx) and it works. However, I need to add one line description as well. How?
1
vote
2answers
807 views
How to get Site Icon to properly update in Sharepoint 2010 Web Part Page
I'm working on creating a reusable and extensible web application in SharePoint 2010. I've created a master page to apply across all pages in the site. However, whenever I create a web part page and ...
1
vote
6answers
3k views
How to find missing web part?
Does anybody know how to find offending web part which causes this error ?
“A Web Part or Web Form Control on this Web Part Page cannot be displayed or imported because it is not registered on this ...
1
vote
1answer
461 views
Save web part configuration for a certain web part page
How can I save the configuration of a web part for a certain web part page in SharePoint?
0
votes
0answers
36 views
Acessing the parent control
Developing a webpart in sharepoint. Its a user control which creates a textbox dynamically. We could edit the textboxes and on button click these changes should be saved(not in db , but in the list ...
0
votes
1answer
468 views
Summary Link Web Part conflict with custom web part in SharePoint 2007/2010
I have a problem of getting Summary Link Web Part (SLWP) work correctly for ages.
There is no problem, if I add SLWP first to a page and add all links before I add a custom web part. However it ...
0
votes
1answer
220 views
How to: Add custom Web Part Page in SharePoint 2007?
I would like to have a custom web part page in SharePoint 2007. I have an application that uses javascript to popup a new window with a web part page. Currently this web part page inherits the look ...
0
votes
1answer
474 views
Sharepoint Custom List code-behind not invoked on a embedded page
I have written a custom list in sharepoint, with the onPreRender method populating the list via a webservice. The list needs to stay updated everytime it is rendered. When the list is viewed via the ...