Search Results

1
vote
2answers
373 views

Information Management Policy in SharePoint

An obscure puzzle, but it's driving me absolutely nuts: I'm creating a custom Information Management Policy in MOSS. I've implemented IPolicyFeature, and my policy feature happily registers …
0
votes

Can ASP.NET AJAX partial rendering work inside a SharePoint 2007 application page?

There's a specific problem with mixing doPostback, UpdatePanel and SharePoint -- and the symptom is exactly what you're seeing: a full-page postback instead of an asynchronous postback. See this KB …
0
votes

How can I improve the edit-compile-test loop when developing a SharePoint workflow?

I'm not sure you need to get the pdb file into the GAC. (At least, the fix I'm about to describe works just fine for debugging SharePoint web parts in VS2005, which have a similar problem.) …
3
votes

How to make the process of debugging ASP.NET Sharepoint applications less time consuming?

If you are using the GAC, you can at least do iisapp.vbs /a "App Pool Name" /r instead of iisreset (it's quicker to recycle a single app pool than to restart IIS) …
1
vote

How to use the SharePoint MultipleLookupField control?

I'm not entirely sure I understand your question, especially the bit about displaying two SPField collections. Sorry if this turns out to be the answer to a completely different question! A …
0
votes

How to use the SharePoint MultipleLookupField control?

Hm. Works fine on mine, so let's see if we can work out how your setup is different... It looks as though it's having trouble populating the control; my first guess would be that this is be …
0
votes

How to use the SharePoint MultipleLookupField control?

Hm. OK, I'm still trying to break mine... so I went to the layouts directory and created a file foo.aspx. Here it is: <%@ Page Language="C#" Inherits="System.Web.UI.Page" MasterP …
0
votes

Information Management Policy in SharePoint

Some nice ideas there, thanks. The Visual Studio debugger wasn't showing an exception (and I've wrapped everything in try/catch blocks just in case), but I hadn't thought of trying Windbg... …