Hot answers tagged wss-3.0
2
Use simple server object model to achieve this
you need to iterate each SPListitem and inside that call a function which will take item id as parameter and then query doc library to get desired items based on that
foreach(SPListitem item in list.items)
{
lst.add( GetAllDocs(item.ID));
}
public list<Documents> GetAllDocs(int id)
{
...
1
There is a similar question on MSDN - their question was about Meta tags in MOSS 2007 master pages (page description, among others). There, one of the answers was to create a special render control and generate the required HTML code via the control. From the site:
1) Create a render control and override the RenderFieldForDisplay method. For an example, see ...
1
I have seen a similar issue in the past that as due to an errant SharePoint Designer workflow that would double in size each time it was invoked. The workflow was up to almost 1GB before we were able to stop it. Microsoft was never able to find the issue but we had to remove all traces of the workflow before the problem fully went away. The performance ...
Only top voted, non community-wiki answers of a minimum length are eligible