Search Results

0
votes
4answers
423 views

Lookup Field as a Site Column via CAML

I'm trying to create a Lookup Field as a Site Column via CAML. The list I want to use as the source of the lookup is created in the Feature Receiver so I don't know it's ID. I've read several blog …
4
votes

How can I check my .NET assembly for freshness?

You could use AssemblyFileVersion attribute. From the docs, the AssemblyFileVersion Instructs a complier to use a specific version number for the Win32 file version resource. The Win32 …
3
votes

how can i use sharepoint (via soap?) from python ?

SharePoint exposes several web services which you can use to query and update data. I'm not sure what web service toolkits there are for Python but they should be able to build proxies for …
3
votes

How to add a web part page to a site definition?

You can provision the page in ONET.XML. First add a web part page template to your site definition. Then provision an instance of the page (with the web parted added) in your ONET.X …
3
votes

SharePoint Search: Exclude lists and listitems from search results

You want to create Search Scopes. You can create them globally though the Shared Service Provider configuration or at the Site Collection level through Site Settings. Check out: …
1
vote

Using Microsoft Search Server 2008 with asp.net/vb.net

Microsoft provides developer APIs. The assemblies are part of the Search Server 2008 SDK. http://msdn.microsof …
2
votes

Sharepoint custom web part property does not show up in the toolbox

You are on the right track. You just need to use different attributes. [Personalizable(PersonalizationScope.Shared)] [WebBrowsable(true)] [Category("Display")] [WebDisplayName("Obey …
0
votes

Sending asynchronous request on clicking a sharepoint web part button control

Once you know the tricks needed to get SharePoint and ASP.NET AJAX to work together it's not that difficult. Here are the steps required: Ensure the ASP.NET AJAX Extensions ar …
1
vote

Page Layout does not appear in the page layouts list

This is just an educated guess but check to see if the Page Layout is waiting to be checked-in or approved. …
0
votes

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

From a technology standpoint, Service Pack 1 does not add full support for ASP.NET AJAX. You still need use the workarounds described in the various articles mentioned in the previ …
4
votes

Add Custom Control in Asp.net

Any page with a MasterPage, whether it is in SharePoint or not, is a Content Page. These pages only support content contained in Content controls. Attempting to add an HTML tag or ASP.NET control d …
2
votes

.NET One Hop Rule and SharePoint Webparts

Impersonate is always set to true in the web.config of a SharePoint application so the problem must be somewhere else. Web Parts that are deployed to the BIN folder of the Web Application run in a …
0
votes

Integrating Search Server 2008 Express with WSS 3.0

These documents should answer your questions: Upgrade to Search Server 2008 from Windows SharePoint Service …
0
votes

assign a value to a custom column when a document is added or created in a sharepoint document library

Try this in the ItemAdded event handler: DisableEventFiring(); SPListItem item = properties.ListItem; item["DocNum"] = "4321"; item.Update(); EnableEventFiring(); …
1
vote

Best Practice for Accessing SharePoint List Item through Object Model

To completely answer your question would require a full blog post. There are several of these out there on the IntraWebs already. Here are a few of the major points: Avoid ite …

1 2 next
15 30 50 per page