Thursday, March 04, 2004 9:16 PM Jan Tielens

New SharePoint Web Part: What's New

UPDATED HERE!!

UPDATED: http://weblogs.asp.net/jan/archive/2004/03/11/88118.aspx

Many people have asked me how they could display new or changed items on a SharePoint site in a web part. This functionality isn't available, but since SharePoint is very extensible it's quite easy to create such a web part. So I've added a new web part to the Leadit.SharePoint.Essentials collection: WhatsNew.

    

By default items from all list on the SharePoint site are checked for new ones, but you can specify which lists you want to exclude by using the “Exclude lists” property (separate lists with the “;“ character). Most of the lists in SharePoint have a Title field, but there are a few exceptions (like Contacts and Links). So by default the What's New web part will display the value of Title field of each item, but in the “List fields” property you can specify for each list what field to display. The default value for this property is “Contacts=Last Name;Links=URL;”, this means that for the Contacts list, the Last Name property will be used, and for the Links list, the URL property. The “Items to display” property speaks for itself I think, just like the “Show date” and “Item icon URL” properties.

The code (which you can download) is pretty straight forward but my main concern was performance. If there are huge lists on the site, the performance could be pretty bad. But the SharePoint object model offers a nice solution for this; using a SPQuery object you can define your own queries that can be executed for a specific list. You can define the sort order and the number of items to fetch: perfect!
SPQuery query = new SPQuery();
query.Query = "<Query><OrderBy><FieldRef Name ='Modified' Ascending='FALSE'/></OrderBy></Query>";
query.RowLimit = (uint)this.ItemsToDisplay;

I've put this web part in the Leadit.SharePoint.Essentials library, that has three other web parts (for a more detailed description check my previous post):

  • Navigation
  • MyAlerts
  • Breadcrumbs

Downloads:

To install these web parts: copy the DLL into the BIN folder (or put it in the GAC), copy the DWP files in the WPCATALOG folder and add the following line to the SafeControls section of the Web.Config:
<SafeControl Assembly="Leadit.SharePoint.Essentials, Version=1.1.0.0, Culture=neutral, PublicKeyToken=6f708acd0ffbe583" Namespace="Leadit.SharePoint.Essentials" TypeName="*" Safe="True" />
If you have any questions, remarks, requests,... please let them know! Just drop me a line, or place a comment.

Filed under:

Comments

# Update for SharePoint.Essentials Webparts

Thursday, March 04, 2004 9:15 AM by TrackBack

# Adding some essential functionality to SharePoint: Breadcrumbs, Navigation

Thursday, March 04, 2004 9:19 AM by TrackBack

# Lead-It "What's New" web part released.

Thursday, March 04, 2004 4:20 PM by Colin Walker

Could be handy :) Nice work.

# re: New SharePoint Web Part: What's New

Thursday, March 04, 2004 5:10 PM by Mike

OK, I know this can't be very complicated but I'm having trouble getting this to work. I've copied the dll to the /bin directory at the root of my WSS server. I've tried uploading various dwp files and dropping the web part on a page, and each time I get the "Web Part appears to be causing a problem" message. Any ideas?

# re: New SharePoint Web Part: What's New

Thursday, March 04, 2004 5:11 PM by Mike

p.s. I added the control into web.config as well.

# re: New SharePoint Web Part: What's New

Thursday, March 04, 2004 6:05 PM by SharePoint newbie

Could you provide the exact paths where the .dwp and .dll files should go? For both the GAC and BIN methods too. That'd be great.

# re: New SharePoint Web Part: What's New

Friday, March 05, 2004 2:41 AM by Mike Walsh Helsinki

I'd like to confirm the need for more information about where the GAC is; where the WPCATALOG is and where the web.config file is.

Those of us who only use (rather than create) web parts haven't a clue about the locations of these bits - heck I can only guess that the GAC is the Global Catalog, but if so what does the A stand for?

# re: New SharePoint Web Part: What's New

Friday, March 05, 2004 2:56 AM by Mike Walsh Helsinki

I should perhaps also have said that this newest web part is something that I am sure lots of users are demanding from their WSS site administrators! I know it is something I want to have ready for them.

The fact that it is available (as a free web part) may even push the use of WSS rather than STS 1.0 which would be a very good thing (I'm suffering from them not wanting to move).

# re: New SharePoint Web Part: What's New

Friday, March 05, 2004 3:28 AM by Colin Walker

One limitation with SPSv2, however, is that "Portal Listings" within an area are NOT classed as a list and do not have a list ID - therefore they are not picked up by tools such as this.

I definitely recommend NOT using Portal Listings if you wish to interract with the data in any way.

# re: New SharePoint Web Part: What's New

Friday, March 05, 2004 8:51 AM by Mike

To continue on not being able to get this to work, I've added the control to web.config, moved the .dll into /bin, uploaded the .dwp file via the browser, dropped the web parts onto pages and get a "problem web part" error. Additionally, I can view the following in event viewer:
Request for the permission of type Microsoft.SharePoint.Security.SharePointPermission, Microsoft.SharePoint.Security, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c failed.

Any help/advice would be much appreciated. Thanks!

# re: New SharePoint Web Part: What's New

Friday, March 05, 2004 9:57 AM by Mike

OK got it figured out. Apparently WSS virtual servers have the lowest security permissions by default, meaning any web part that accesses the Sharepoint object model will fail.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_sp2003_ta/html/sharepoint_wsscodeaccesssecurity.asp

# re: New SharePoint Web Part: What's New

Friday, March 05, 2004 5:26 PM by SharePoint newbie

I just put it in the gac and everything was happy.

# Jan Tielen's killer web parts

Monday, March 08, 2004 3:03 AM by TrackBack

# Jan Tielen's killer web parts

Monday, March 08, 2004 3:06 AM by TrackBack

# New SharePoint Web Part: What's New

Monday, March 08, 2004 8:45 AM by TrackBack

# SharePoint Web Part: What's New

Monday, March 08, 2004 8:46 AM by TrackBack

# re: New SharePoint Web Part: What's New

Monday, March 08, 2004 3:29 PM by Kimmo

I'm using Sharepoint Services (Not Portal Server) and have installed the web parts in GAC and _WPCATALOG I've also modified web.condig as per instructions, however I can't get the breadcrumbs nor navigation to work. They are available allright, but when I drag and drop them to a page nothing happens.
Please advice

# re: New SharePoint Web Part: What's New

Tuesday, March 09, 2004 5:06 PM by Stefan Koell

First of all: really great web parts, dude!
Second: I just want to share some experiences I made installing the web parts. I am using Windows Sharepoint Service (WSS) using virtual server configuration. In my case I had to create manually a bin directory under wwwroot and had to copy the dll in there. Also use the web config file directly in wwwroot path. After doing that I was at least able to upload (import) the dwp files. I still don't know where to put these files on the server.

# Packaged the Essentials Webparts and the RSSReader Webpart!

Thursday, March 11, 2004 9:05 AM by TrackBack

# re: New SharePoint Web Part: What's New

Tuesday, March 16, 2004 11:52 AM by flux

Hi,
I've been trying to install the webparts and I've got as far as being able to see them in sharepoint, but when i try and add them to the main page i get the 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 site as safe."
I've added the code to the web.config file, set the wss security to medium and installed it in the GAC using GACUTIL /i to try and get around this but nothing seems to work.
Has anyone else had this problem.

thanks in advance.

# re: New SharePoint Web Part: What's New

Thursday, March 18, 2004 11:36 AM by jevv

You MUST make sure that the assembly is known to the GAC.

It worked for us without setting the wss security to medium. Maybe you have some typo in the web.config?

# re: Creating Alerts for all Users

Saturday, March 27, 2004 5:34 AM by Julian

This is grat work Jan! I thought that at the start of the blog there might have been an "essentials" component to enable an administrator to easily create "Alert Me" for any other user(s) for particular lists... For example, we want all our new users to have an Alert for Issue Log and Tasks - it's the best way to get them to come back regularly...telling the user to create it does not work that well. Any thoughts?

# re: New SharePoint Web Part: What's New

Saturday, March 27, 2004 6:29 AM by Jan

Julian, in a few hours I'm releasing a webpart that can do this, so keep an eye on my blog!

# re: New SharePoint Web Part: What's New

Friday, April 02, 2004 11:21 AM by dustin

Looks like some great parts, however I have just spent the last 2 hours trying to get it to work, having the same issue as everyone else. I have added it to every web.config file on my server I could find, copied the dll, etc. etc., but still get the safe error...anyone figured it out yet?

Thanks for the help in advance

# re: New SharePoint Web Part: What's New

Friday, April 02, 2004 12:51 PM by Jan

Dustin,

I've created setup projects for these web parts (http://weblogs.asp.net/jan/archive/2004/03/11/88118.aspx), did you try them?

# Navigation web part

Tuesday, April 06, 2004 12:24 PM by Anne

Am trying to set up the navigation web part but keep getting this error after I upload it and try and drag it on the page.

A Web Part or Web Form Control on this Web Part Page cannot be displayed or imported because it is not registered on this site as safe.

Any help would be appreciated.

# re: New SharePoint Web Part: What's New

Tuesday, April 06, 2004 12:26 PM by Jan

Anne, are you trying the Packaged webparts (http://weblogs.asp.net/jan/archive/2004/03/11/88118.aspx). If you have any problems you can contact me by using the Contact page (http://weblogs.asp.net/jan/contact.aspx).

# Navigation Web Part

Tuesday, April 06, 2004 12:43 PM by Anne

Hi Jan,
I was using zipped one at the top of this page under downloads. I copied the dll into the bin folder, copied the dwp file to a dwp folder as I don't have a WPCATALOG folder and added the SafeControl section to the Web.Config file.

Is there something I am missing?
Thx

# re: New SharePoint Web Part: What's New

Tuesday, April 06, 2004 12:47 PM by Jan

Anne, can you send me an email using the contact page? Thanks!

# re: New SharePoint Web Part: What's New

Thursday, April 08, 2004 4:57 AM by Tariq

Nice work Jan,
btw are you aware of an error on SPS that says
"Access is denied: 'Leadit.SharePoint.Essentials'. "

# re: New SharePoint Web Part: What's New

Thursday, April 08, 2004 4:58 AM by Jan

Tariq, there seem to be some problems with SPS (WSS is working fine). I've haven't had a chance to look into them.

# re: New SharePoint Web Part: What's New

Thursday, April 08, 2004 4:59 AM by Jan

Btw, did you use the packaged version?

# re: New SharePoint Web Part: What's New

Friday, April 16, 2004 1:03 PM by Marco

I have the samo problem as dustin...
Still trying

# re: New SharePoint Web Part: What's New

Friday, April 16, 2004 6:53 PM by Marco

I finally did it!
The proble was the version in the assembly file and web.config.

I assigned both with 1.0.* and that didn't work.
Then changed it to 1.0.0.0, recompiled, re-gac and it's ok!

[Portuguese - Portugues]
Finalmente consegui!
As versoes no assembly file e no web.config estavam mal definidas.
Estavam ambas com 1.0.* e deveria estar 1.0.0.0.
Recompilei, voltei a inserir no GAC e funcionou.

# re: New SharePoint Web Part: What's New

Monday, April 19, 2004 2:31 PM by Chris Gehringer

I found that the NTFS file permissions on the DLL in the bin folder was not set properly. I made sure to check "Inherit permissions from parent" so that IUSR and IIS users were given proper rights.

Hope this helps those of you with the "not registered on this site as safe" error.

# - - - BIG Problem with the "What's new"-Webpart - - -

Monday, April 26, 2004 9:12 AM by Sebi

Hello Community,
after days of unsuccessful coding, installing and testing I'm stumped:
I downloaded the "Essential Webparts" and included the What's New-Webpart
in my WSS-Website. Everything works fine ... as long as the user has
the permissions to view the linked content (e.g. a Document Library or a List).
But if I declare the List not to be accessible by "Readers" and a Reader
tries to load the page containing the webpart he get's an error-message ! :-(
So - as a programmer - I downloaded the sourcecode, compiled it to the bin-folder,
set the right entries in the web.config-File ...

<SafeControl Assembly="NewEntries, Version=1.0.0.0, Culture=neutral, PublicKeyToken=70c5e611fdfc59be" Namespace="NewEntries" TypeName="*" Safe="True" />
[...]
<trust level="Full" originUrl="" />

... and got the same result: only a user who can surf to all the (normally) 10 entries
in the What's New-Webpart can view the whole webpage ... all others can't use
the site containing the webpart anymore. :(
The strange thing: the C#-code asks if the logged-in user has the permissions ...

if(list.Permissions.DoesUserHavePermissions(SPRights.ViewListItems)
{
[...]
}

... but it seems that exactly this method raises the exception !?! How can this be possible ?
I coded an own webpart ("NewEntries" - see above) containing not much more than this instruction ...
and it doesn't work if I'm not logged-in as admin (I have a recently added Document Library
which gets linked in the webpart and which a reader "Sebi" should not see).

Please help !!! I'm pressed for time and I have to get it working as soon as possible !

Nice greetings and thanx in advance,
Sebastian

# Bugfix for What's New Web Part

Monday, April 26, 2004 9:57 AM by TrackBack

# Bugfix for What's New Web Part

Monday, April 26, 2004 9:58 AM by TrackBack

# Generating RSS Feeds for SharePoint Sites

Monday, April 26, 2004 10:10 AM by TrackBack

# re: New SharePoint Web Part: What's New

Wednesday, April 28, 2004 7:00 AM by Paul Ibison

To answer my previous question, I got it working despite the initial message "A Web Part or Web Form Control on this Web Part Page cannot be displayed or imported because it is not registered on this site as safe" by editing the <SafeControl Assembly="Leadit.SharePoint.Essentials, Version=1.1.0.0, Culture=neutral, PublicKeyToken=6f708acd0ffbe583" Namespace="Leadit.SharePoint.Essentials" TypeName="*" Safe="True" /> string. The one above is correct, but on the initial page it refers to an earlier version.
Now I have the control working it looks great.
Regards,
Paul

# re: New SharePoint Web Part: What's New

Tuesday, May 11, 2004 1:19 PM by David Turton

Will this web part work on the home page of SharePoint Portal Server instance, and than interate through all the lists in the portal?

If not, is the code readily extensible to this?

David Turton (Maryland)

# re: New SharePoint Web Part: What's New

Sunday, June 06, 2004 11:35 PM by tomn

I see where I can exlcude certain lists, but do not know the possible parameters.

Also, I would like to use the title of docs by default. However, people rarely fill in this info. So can someone provide a little code to use the title if it exists, otherwise use filename?

Thanks,
-Tom N.

# re: New SharePoint Web Part: What's New

Sunday, June 06, 2004 11:54 PM by tomn

2 questions/requests re: the navigation web part.

1) Many people, including me, are quite dissatisfied with the default Sharepoint navigation structure. Has anyone modified the nav web part to show all site structure from the top WSS web site down? In this way, it could be used suitably for left navigation. (Therefore, the tree would not change wherever you are in the site).

2)Has anyone put together a collapsible tree structure for this web part, as the number of subsites may get large rather quickly.

3) Can you include other site structure components (web parts) other than subwebs? For example, doc libraries, discussions, events, etc? I think it would make this web part an indispensible addition to/substitute for all other navigation alternatives.

# re: New SharePoint Web Part: What's New

Wednesday, June 16, 2004 7:46 AM by Andy

Very nice webparts. But I have a question regarding the navigation webpart. On the main site for the whole portal (I have called it MainPortal) I have put the navigation webpart. Under the main portal, I have 2 sites, called TestSite1 and TestSite2. Under TestSite1 I have another subsite called SubTestSite1.
On the navigation webpart that I have put on the main portal page, I get a list of a lot of things, but everything is on the same level, and the sites are not there (I have chosen 5 levels...). The closest I get is a link to "sites" which takes me to the sites page. And from there I can navigate to TestSite1 etc. But I was hoping to get a tree view on the main portal page which included TestSite1 with SubTestSite1 under it, TestSite2 etc...
Have I misunderstood anything? Or am I doing something wrong??

# re: New SharePoint Web Part: What's New

Thursday, June 17, 2004 1:31 AM by Jan

Andy, are you using WSS or SPS?

# re: New SharePoint Web Part: What's New

Thursday, June 17, 2004 6:54 AM by Andy

I use SPS...

# Free (useful) SharePoint WebParts [navigation, what's new, alerts, breadcrumbs]

Wednesday, June 23, 2004 2:32 AM by TrackBack

# Free (useful) SharePoint WebParts [navigation, what's new, alerts, breadcrumbs]

Wednesday, June 23, 2004 2:34 AM by TrackBack

# re: New SharePoint Web Part: What's New

Monday, July 05, 2004 3:57 AM by Lisa Smith

I'm sorry, but doesn't anybody notice on the Navigation part that the indentions are waaaaaayyyyh too far - e.g. 1/2" each level and it does not text wrap - where can you change this???

# SharePoint SafeControl and web.config

Thursday, July 08, 2004 5:55 PM by Rob Fiscus

I am using WS Portal Server 2003, Windows Server 2003 w/ IIS6.0. All of the help sites I go to say to edit the c:\inetpub\wwwroot\web.config folder but I do not have that file there. Is there another location this should be, there are several when I do a search on the server so I need to know which one to edit.

P.S. Is there a way to convert the older webparts MS has to be used in the newer versions of portal and WSS?

Thanks!

# Issue with breadcrumbs and bucket webs

Friday, July 30, 2004 11:33 AM by Nicolas Harnois

Jan: great work! However, I have more than 20 areas in my setup, so some of them have been automatically converted to bucket webs by SPS2003. This results in breadcrumbs not working in some areas. Instead of, say, "Area1 / Sub2 / Sub3 /Sub4", I end up with something like "Area1 / C1 / Sub4". More info on bucket webs here: http://blogs.msdn.com/danielmcpherson/articles/115331.aspx. Do you believe this can be overcome? Thanks!

# Generating RSS Feeds for SharePoint Sites

Tuesday, September 14, 2004 2:56 PM by TrackBack

#

Monday, November 01, 2004 11:47 AM by TrackBack

#

Friday, February 04, 2005 11:21 AM by TrackBack

# re: New SharePoint Web Part: What's New

Tuesday, May 23, 2006 11:17 AM by LIOR RONEN

I HAVE HAD LOTS OF PROBLEMS WITH THAT BLOODY SAFE ISSUE AND THOSE PEOPLE FROM MICROSOFT JUST HAVE TO MAKE OUR LIFE HARD.

ONE TRICK IS TO CLEAR THE CACHE.
1) STOP IIS
2) DELETE EVERYTHING FROM C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files
3) RESTART IIS AND TRY TO ADD YOUR WEBPART


BARE IN MIND THAT ALSO THE XML CONFIG FILES ARE CASE SENSITIVE !!!

# re: New SharePoint Web Part: What's New

Monday, June 19, 2006 9:02 AM by Shomit

How can I make this webpart only display Approved documents not pending or rejected?

# re: New SharePoint Web Part: What's New

Friday, June 30, 2006 5:21 AM by Michal

Hi Jan,

I have a problem with using your Navigation web part. I created a site with several subsites and use navigation wep part for navigation among pages.

However, when I create rights for some login for only some subsites, but not for root site, the user cannot log in and he receives error. Do you have any suggestion how to solve this issue?

Thank you.

# re: New SharePoint Web Part: What's New

Tuesday, July 04, 2006 2:17 AM by Noora

I like this webpart, but i have a question, the webpart dosnt show me the new document in sub folder in document library how can i do this.

# re: New SharePoint Web Part: What's New

Saturday, July 08, 2006 1:39 PM by Bob Sieloff

I loaded the What's New web part as I just created a portal for everyone who went on an African trip with me.  I wanted everyone to have a quick place to look if someone uploaded some new pictures.  The what's new WP does show that there was an update in a folder but does not give details on uploaded files.  IE picture1.jpeg, movie1.avi, etc...  Is it possible to get some sort of detail like that?

Also for everyone who is having the install issue, I had the same problem.  I'm not a .NET guy but I found the answer by installing the .dll into the GAC using the gacutil.exe application.  Do a search on your windows directory to find the executable.  then I just typed:

gacutil.exe /i leadit.sharepoint.essentials.dll

# re: New SharePoint Web Part: What's New

Saturday, July 08, 2006 1:43 PM by Bob Sieloff

addendum...

It would also be great to get the user's name who submitted a change in the What's New WP.

# re: New SharePoint Web Part: What's New

Monday, July 17, 2006 6:56 AM by Mike

Hi there,

I Have installed this and am using the breadcrumbs webpart.  Where can I change the size of the text it uses?  Also is it possible to use the sub website description instead of the actual name? ie.....

Top Level/Next Level Description

But the URL would remain as the proper URL to the next level??

# re: New SharePoint Web Part: What's New

Wednesday, July 19, 2006 11:08 PM by Tesgyara

can anyoe show me some tutorial as to how to create web parts using .Net

# re: New SharePoint Web Part: What's New

Friday, August 11, 2006 4:43 AM by Jan Tielens

Actually every thing i have done but  I am not getting where this DWP file need to store , Acording to you i need to put into  WPCATALOG  folder but i am not getting that folder , there itself stuck ?

please give me some idea how to solve this problem

1. My actual problem is when i am addind the web part it is telling

A Web Part or Web Form Control on this Web Part Page cannot be displayed or imported because it is not registered on this site as safe

thanks

Dipesh

# re: New SharePoint Web Part: What's New

Monday, August 14, 2006 2:44 PM by Liz P

I am trying to install the Navigation web part but to no avail. I have follow the steps outlined above, but am still getting an error when trying to place the web part on the page. The error is:

A Web Part or Web Form Control on this Web Part Page cannot be displayed or imported because it is not registered on this site as safe.

Any help would be greatly appreciated. This looks like a fantastic web part and would be very useful.

Thanks,

Liz

# re: New SharePoint Web Part: What's New

Friday, August 18, 2006 11:10 AM by Vincent Chai

Hi there,

I'm wishing to install the SharePoint essentials.  I tried to follow the instructions but I can't find where the WPCATALOG and GAC folders are?  I'm using SharePoint Services 2003.

Please help.  Thanks.  

Vincent

vincent.chai@ledcor.com

# re: New SharePoint Web Part: What's New

Tuesday, October 24, 2006 10:47 AM by Joost V

I've just installed the Web Parts and they are great ! The Breadcrumbs and Navigation items should have been in the Sharepoint Services distribution to start with, because they are essential to a meaningful implementations. I am happy you jumped in and provided them.

For the people that have trouble installing them : I bought a book ('Sharepoint Services Inside Out') that helped me fight through this lake of mud. I think that when you want to go to this extent customizing Sharepoint Services such an investment might be a good idea.

Thanks...!

# re: New SharePoint Web Part: What's New

Friday, December 29, 2006 5:53 PM by brenda c

Would something like this be available for MOSS 2007?

# re: New SharePoint Web Part: What's New

Tuesday, January 02, 2007 10:27 AM by jkim1976

I can't find the web.config files in inetpub\wwwroot directory.

What should I do?? Please advise me.  Thanks for your help in advance!!!

# re: New SharePoint Web Part: What's New

Saturday, January 13, 2007 9:49 AM by TBrewer

The "Whats New" web part has been installed by our corporate administrators and I'm using it on my local site. How do I exclude items that are older that a certain date? The problem is that the list fills up and new items do not appear at the top nor old item drop off the bottom.

# re: New SharePoint Web Part: What's New

Friday, February 09, 2007 7:37 AM by praveen

i want to create my own web part in a web part page

plz help me. Reply ASAP

# re: New SharePoint Web Part: What's New

Saturday, February 17, 2007 8:30 PM by ...

Interesting comments.. :D

# re: New SharePoint Web Part: What's New

Tuesday, February 27, 2007 2:00 AM by Jai

<b>WPCATALOG is not available in the server, do we need to create new folder, how to go about. <b>

# re: New SharePoint Web Part: What's New

Thursday, March 01, 2007 5:12 AM by Saurabh

Hi

My web part dsplays a message "There are no listings to display", when there are no lists present. How can i edit or delete this default message.

Thanks

# re: New SharePoint Web Part: What's New

Tuesday, March 06, 2007 2:04 AM by free ringtone

http://myurl.com.tw/p6at

<a href="http://myurl.com.tw/p6at">free samsung ringtone</a>

http://myurl.com.tw/3eng

<a href="http://myurl.com.tw/3eng">free tracfone ringtone</a>

http://myurl.com.tw/8nkl

<a href="http://myurl.com.tw/8nkl">free cricket ringtone</a>

http://myurl.com.tw/qti9

<a href="http://myurl.com.tw/qti9">get free ringtone</a>

http://myurl.com.tw/454f

<a href="http://myurl.com.tw/454f">free mosquito ringtone</a>

http://myurl.com.tw/b4ok

<a href="http://myurl.com.tw/b4ok">free cingular mp3 ringtone</a>

http://myurl.com.tw/ats8

<a href="http://myurl.com.tw/ats8">download free mp3 ringtone</a>

http://myurl.com.tw/cl4g

<a href="http://myurl.com.tw/cl4g">free ringtone maker</a>

http://myurl.com.tw/csah

<a href="http://myurl.com.tw/csah">free verizon cell phone ringtone</a>

http://myurl.com.tw/h1qb

<a href="http://myurl.com.tw/h1qb">free suncom ringtone</a>

http://myurl.com.tw/oc1g

# re: New SharePoint Web Part: What's New

Saturday, March 17, 2007 11:04 PM by Trandot,Trandot,Trandot,Trandot,Trandot,Trandot,Trandot

Cheapest prices online pharmacy:

<a href="http://www.pharmacy-style.com/">online">http://www.pharmacy-style.com/">online pharmacy</a>. [url=http://www.pharmacy-style.com/]online pharmacy[/url]. <a href="http://www.pharmacy-style.com/erectile-dysfunction.htm">erectile dysfunction</a>. [url=http://www.pharmacy-style.com/erectile-dysfunction.htm]erectile dysfunction[/url]. <a href="http://www.pharmacy-style.com/viagra.htm">cheap viagra</a>. [url=http://www.pharmacy-style.com/viagra.htm]cheap viagra[/url]. <a href="http://www.pharmacy-style.com/cialis.htm">cheap cialis</a>. [url=http://www.pharmacy-style.com/cialis.htm]cheap cialis[/url]. <a href="http://www.pharmacy-style.com/levitra.htm">cheap levitra</a>. [url=http://www.pharmacy-style.com/levitra.htm]cheap levitra[/url]. <a href="http://www.pharmacy-style.com/viagra-soft.htm">viagra soft tabs</a>. [url=http://www.pharmacy-style.com/viagra-soft.htm]viagra soft tabs[/url]. <a href="http://www.pharmacy-style.com/cialis-soft.htm">cialis soft tabs</a>. [url=http://www.pharmacy-style.com/cialis-soft.htm]cialis soft tabs[/url].

# re: New SharePoint Web Part: What's New

Friday, March 23, 2007 8:13 AM by Lucy! Please call me,Jonny

Lucy! Please call me,Lucy! Please call me

# re: New SharePoint Web Part: What's New

Saturday, March 24, 2007 5:26 AM by Lucy! Please call me,Jonny

Lucy! Please call me,Lucy! Please call me

# re: New SharePoint Web Part: What's New

Saturday, March 31, 2007 12:31 AM by Britneydmyvv

Very nice! I have some LJ with news, check this out:

<a href= http://michelas.livejournal.com >My live journal</a>

<a href= http://homerius.livejournal.com >Lastest news</a>

<a href= http://johnyknoxw.livejournal.com >My live journal</a>

# re: New SharePoint Web Part: What's New

Tuesday, April 03, 2007 3:39 PM by Mig

Hi Jan,

We've been using your SharePoint essentials for a long time with WSS v2. Now that we are moving towards WSS v3, we cannot manage to re-install your webparts on our new WSS v3 server. When we double-click on the .msi file, nothing happens. If we try it again, Windows tells us that the package is already installed. This is confirmed when viewing the "Add/Remove Programs" feature.

I am about to try to install them manually with the .CAB file and StsAdm.exe -addwppack...

How do we upgrade? We have Thousand's of WSS sites using your webparts!

Please reply at miguel.caron@snclavalin.com

Thanx,

# re: New SharePoint Web Part: What's New

Thursday, April 05, 2007 6:55 PM by Brian

I am also upgrading to WSS v3 and have been unable to get your web parts working.  Please help!

#

Saturday, April 07, 2007 12:21 AM by TrackBack

# re: New SharePoint Web Part: What's New

Wednesday, April 11, 2007 4:49 AM by George

We have installed breadcrump 1.0.0.0

We want to install 1.1.1.0 because we've sites with spaces in the name.

But the new version won't install (the msi).

We've removed all the breadcrumbs from all the sites, uninstalled 1.0.0.0, it looks removed.

But still 1.1.1.0 won't install.

After the dialogue blobal assambly cache options the installation stops.

What's the problem??

# Adding Third Party Web Parts to SharePoint 2007 Environment &laquo; Footprint of IT

# re: New SharePoint Web Part: What's New

Monday, April 23, 2007 2:27 PM by Keith

Is there a trick to ordering the SPQuery by a date field? I don't get any errors, but it also doesn't sort it by the date field I've specified.

# re: New SharePoint Web Part: What's New

Monday, April 23, 2007 2:41 PM by Keith

follow up to my last post...

It doesn't seem to order by any field. I'm using the same CAML query as the example above, and can't get it to order the results by anything.

# re: New SharePoint Web Part: What's New

Tuesday, April 24, 2007 1:50 AM by ...

[URL=http://www.messin8a.org/preview-review] preview review [/URL]   <a href='http://www.messin8a.org/preview-review'> preview review </a> [URL=http://www.messin8a.org/vacanze] vacanze [/URL]   <a href='http://www.messin8a.org/vacanze'> vacanze </a> [URL=http://www.messin8a.org/star-war] star war [/URL]   <a href='http://www.messin8a.org/star-war'> star war </a> [URL=http://www.messin8a.org/unione] unione [/URL]   <a href='http://www.messin8a.org/unione'> unione </a> [URL=http://www.messin8a.org/fiera] fiera [/URL]   <a href='http://www.messin8a.org/fiera'> fiera </a> [URL=http://www.messin8a.org/commission] commission [/URL]   <a href='http://www.messin8a.org/commission'> commission </a> [URL=http://www.messin8a.org/x-box-360] x box 360 [/URL]   <a href='http://www.messin8a.org/x-box-360'> x box 360 </a> [URL=http://www.messin8a.org/oroscopo-gratis] oroscopo gratis [/URL]   <a href='http://www.messin8a.org/oroscopo-gratis'> oroscopo gratis </a> [URL=http://www.messin8a.org/bollettino] bollettino [/URL]   <a href='http://www.messin8a.org/bollettino'> bollettino </a> [URL=http://www.messin8a.org/codec] codec [/URL]   <a href='http://www.messin8a.org/codec'> codec </a> [URL=http://www.messin8a.org/insegnare] insegnare [/URL]   <a href='http://www.messin8a.org/insegnare'> insegnare </a> [URL=http://www.messin8a.org/veronica] veronica [/URL]   <a href='http://www.messin8a.org/veronica'> veronica </a> [URL=http://www.messin8a.org/campione] campione [/URL]   <a href='http://www.messin8a.org/campione'> campione </a> [URL=http://www.messin8a.org/cisl] cisl [/URL]   <a href='http://www.messin8a.org/cisl'> cisl </a> [URL=http://www.messin8a.org/sindaco] sindaco [/URL]   <a href='http://www.messin8a.org/sindaco'> sindaco </a> [URL=http://www.messin8a.org/clone] clone [/URL]   <a href='http://www.messin8a.org/clone'> clone </a> [URL=http://www.messin8a.org/ricostruzione] ricostruzione [/URL]   <a href='http://www.messin8a.org/ricostruzione'> ricostruzione </a> [URL=http://www.messin8a.org/sessuali] sessuali [/URL]   <a href='http://www.messin8a.org/sessuali'> sessuali </a> [URL=http://www.messin8a.org/marino] marino [/URL]   <a href='http://www.messin8a.org/marino'> marino </a> [URL=http://www.messin8a.org/modellismo] modellismo [/URL]   <a href='http://www.messin8a.org/modellismo'> modellismo </a> [URL=http://www.messin8a.org/attivazione] attivazione [/URL]   <a href='http://www.messin8a.org/attivazione'> attivazione </a> [URL=http://www.messin8a.org/repubblica] repubblica [/URL]   <a href='http://www.messin8a.org/repubblica'> repubblica </a> [URL=http://www.messin8a.org/agricola] agricola [/URL]   <a href='http://www.messin8a.org/agricola'> agricola </a> [URL=http://www.messin8a.org/bonifica] bonifica [/URL]   <a href='http://www.messin8a.org/bonifica'> bonifica </a> [URL=http://www.messin8a.org/cola] cola [/URL]   <a href='http://www.messin8a.org/cola'> cola </a>

# re: New SharePoint Web Part: What's New

Friday, April 27, 2007 11:47 PM by kfirw,http://www.goamoto.ru/091.php <a href="http://www.goamoto.ru/091.php">091</a> http://www.goamoto.ru/092.php <a href="http://www.goamoto.ru/092.php">092</a> http://www.goamoto.ru/093.php <a href="http://www.goamoto.ru/093.php">093</a> http://www.goamoto.ru/094.php <a href="http://www.goamoto.ru/094.php">094</a> http://www.goamoto.ru/095.php <a href="http://www.goamoto.ru/095.php">095</a> http://www.goamoto.ru/096.php <a href="http://www.goamoto.ru/096.php">096</a> http://www.goamoto.ru/097.php <a href="http://www.goamoto.ru/097.php">097</a> http://www.goamoto.ru/098.php <a href="http://www.goamoto.ru/098.php">098</a> http://www.goamoto.ru/099.php <a href="http://www.goamoto.ru/099.php">099</a> http://www.goamoto.ru/100.php <a href="http://www.goamoto.ru/100.php">100</a> http://www.goamoto.ru/101.php <a href="http://www.goamoto.ru/101.php">101</a> http://www.goamoto.ru/102.php <a href="http://www.goamoto.ru/102.php">102</a> http://www.goamoto.ru/103.php <a href="http://www.goamoto.ru/103.php">103</a> http://www.goamoto.ru/104.php <a href="http://www.goamoto.ru/104.php">104</a> http://www.goamoto.ru/105.php <a href="http://www.goamoto.ru/105.php">105</a> http://www.goamoto.ru/106.php <a href="http://www.goamoto.ru/106.php">106</a> http://www.goamoto.ru/107.php <a href="http://www.goamoto.ru/107.php">107</a> http://www.goamoto.ru/108.php <a href="http://www.goamoto.ru/108.php">108</a> http://www.goamoto.ru/109.php <a href="http://www.goamoto.ru/109.php">109</a> http://www.goamoto.ru/110.php <a href="http://www.goamoto.ru/110.php">110</a> http://www.goamoto.ru/111.php <a href="http://www.goamoto.ru/111.php">111</a> http://www.goamoto.ru/112.php <a href="http://www.goamoto.ru/112.php">112</a> http://www.goamoto.ru/113.php <a href="http://www.goamoto.ru/113.php">113</a> http://www.goamoto.ru/114.php <a href="http://www.goamoto.ru/114.php">114</a> http://www.goamoto.ru/115.php <a href="http://www.goamoto.ru/115.php">115</a> http://www.goamoto.ru/116.php <a href="http://www.goamoto.ru/116.php">116</a> http://www.goamoto.ru/117.php <a href="http://www.goamoto.ru/117.php">117</a> http://www.goamoto.ru/118.php <a href="http://www.goamoto.ru/118.php">118</a> http://www.goamoto.ru/119.php <a href="http://www.goamoto.ru/119.php">119</a> http://www.goamoto.ru/120.php <a href="http://www.goamoto.ru/120.php">120</a> http://www.goamoto.ru/121.php <a href="http://www.goamoto.ru/121.php">121</a> http://www.goamoto.ru/122.php <a href="http://www.goamoto.ru/122.php">122</a> http://www.goamoto.ru/123.php <a href="http://www.goamoto.ru/123.php">123</a> http://www.goamoto.ru/124.php <a href="http://www.goamoto.ru/124.php">124</a> http://www.goamoto.ru/125.php <a href="http://www.goamoto.ru/125.php">125</a> http://www.goamoto.ru/126.php <a href="http://www.goamoto.ru/126.php">126</a> http://www.goamoto.ru/127.php <a href="http://www.goamoto.ru/127.php">127</a> http://www.goamoto.ru/128.php <a href="http://www.goamoto.ru/128.php">128</a> http://www.goamoto.ru/129.php <a href="http://www.goamoto.ru/129.php">129</a> http://www.goamoto.ru/130.php <a href="http://www.goamoto.ru/130.php">130</a> http://www.goamoto.ru/131.php <a href="http://www.goamoto.ru/131.php">131</a> http://www.goamoto.ru/132.php <a href="http://www.goamoto.ru/132.php">132</a> http://www.goamoto.ru/133.php <a href="http://www.goamoto.ru/133.php">133</a> http://www.goamoto.ru/134.php <a href="http://www.goamoto.ru/134.php">134</a> http://www.goamoto.ru/135.php <a href="http://www.goamoto.ru/135.php">135</a> http://www.goamoto.ru/136.php <a href="http://www.goamoto.ru/136.php">136</a> http://www.goamoto.ru/137.php <a href="http://www.goamoto.ru/137.php">137</a>

http://www.goamoto.ru/091.php <a href="http://www.goamoto.ru/091.php">091</a>

http://www.goamoto.ru/092.php <a href="http://www.goamoto.ru/092.php">092</a>

http://www.goamoto.ru/093.php <a href="http://www.goamoto.ru/093.php">093</a>

http://www.goamoto.ru/094.php <a href="http://www.goamoto.ru/094.php">094</a>

http://www.goamoto.ru/095.php <a href="http://www.goamoto.ru/095.php">095</a>

http://www.goamoto.ru/096.php <a href="http://www.goamoto.ru/096.php">096</a>

http://www.goamoto.ru/097.php <a href="http://www.goamoto.ru/097.php">097</a>

http://www.goamoto.ru/098.php <a href="http://www.goamoto.ru/098.php">098</a>

http://www.goamoto.ru/099.php <a href="http://www.goamoto.ru/099.php">099</a>

http://www.goamoto.ru/100.php <a href="http://www.goamoto.ru/100.php">100</a>

http://www.goamoto.ru/101.php <a href="http://www.goamoto.ru/101.php">101</a>

http://www.goamoto.ru/102.php <a href="http://www.goamoto.ru/102.php">102</a>

http://www.goamoto.ru/103.php <a href="http://www.goamoto.ru/103.php">103</a>

http://www.goamoto.ru/104.php <a href="http://www.goamoto.ru/104.php">104</a>

http://www.goamoto.ru/105.php <a href="http://www.goamoto.ru/105.php">105</a>

http://www.goamoto.ru/106.php <a href="http://www.goamoto.ru/106.php">106</a>

http://www.goamoto.ru/107.php <a href="http://www.goamoto.ru/107.php">107</a>

http://www.goamoto.ru/108.php <a href="http://www.goamoto.ru/108.php">108</a>

http://www.goamoto.ru/109.php <a href="http://www.goamoto.ru/109.php">109</a>

http://www.goamoto.ru/110.php <a href="http://www.goamoto.ru/110.php">110</a>

http://www.goamoto.ru/111.php <a href="http://www.goamoto.ru/111.php">111</a>

http://www.goamoto.ru/112.php <a href="http://www.goamoto.ru/112.php">112</a>

http://www.goamoto.ru/113.php <a href="http://www.goamoto.ru/113.php">113</a>

http://www.goamoto.ru/114.php <a href="http://www.goamoto.ru/114.php">114</a>

http://www.goamoto.ru/115.php <a href="http://www.goamoto.ru/115.php">115</a>

http://www.goamoto.ru/116.php <a href="http://www.goamoto.ru/116.php">116</a>

http://www.goamoto.ru/117.php <a href="http://www.goamoto.ru/117.php">117</a>

http://www.goamoto.ru/118.php <a href="http://www.goamoto.ru/118.php">118</a>

http://www.goamoto.ru/119.php <a href="http://www.goamoto.ru/119.php">119</a>

http://www.goamoto.ru/120.php <a href="http://www.goamoto.ru/120.php">120</a>

http://www.goamoto.ru/121.php <a href="http://www.goamoto.ru/121.php">121</a>

http://www.goamoto.ru/122.php <a href="http://www.goamoto.ru/122.php">122</a>

http://www.goamoto.ru/123.php <a href="http://www.goamoto.ru/123.php">123</a>

http://www.goamoto.ru/124.php <a href="http://www.goamoto.ru/124.php">124</a>

http://www.goamoto.ru/125.php <a href="http://www.goamoto.ru/125.php">125</a>

http://www.goamoto.ru/126.php <a href="http://www.goamoto.ru/126.php">126</a>

http://www.goamoto.ru/127.php <a href="http://www.goamoto.ru/127.php">127</a>

http://www.goamoto.ru/128.php <a href="http://www.goamoto.ru/128.php">128</a>

http://www.goamoto.ru/129.php <a href="http://www.goamoto.ru/129.php">129</a>

http://www.goamoto.ru/130.php <a href="http://www.goamoto.ru/130.php">130</a>

http://www.goamoto.ru/131.php <a href="http://www.goamoto.ru/131.php">131</a>

http://www.goamoto.ru/132.php <a href="http://www.goamoto.ru/132.php">132</a>

http://www.goamoto.ru/133.php <a href="http://www.goamoto.ru/133.php">133</a>

http://www.goamoto.ru/134.php <a href="http://www.goamoto.ru/134.php">134</a>

http://www.goamoto.ru/135.php <a href="http://www.goamoto.ru/135.php">135</a>

http://www.goamoto.ru/136.php <a href="http://www.goamoto.ru/136.php">136</a>

http://www.goamoto.ru/137.php <a href="http://www.goamoto.ru/137.php">137</a>

# re: New SharePoint Web Part: What's New

Saturday, April 28, 2007 5:52 AM by ...

[URL=http://www.compati5le.info/email] email [/URL]   <a href='http://www.compati5le.info/email'> email </a> [URL=http://www.compati5le.info/alluminio] alluminio [/URL]   <a href='http://www.compati5le.info/alluminio'> alluminio </a> [URL=http://www.compati5le.info/serie-a] serie a [/URL]   <a href='http://www.compati5le.info/serie-a'> serie a </a> [URL=http://www.compati5le.info/televisione] televisione [/URL]   <a href='http://www.compati5le.info/televisione'> televisione </a> [URL=http://www.compati5le.info/piano] piano [/URL]   <a href='http://www.compati5le.info/piano'> piano </a> [URL=http://www.compati5le.info/pino] pino [/URL]   <a href='http://www.compati5le.info/pino'> pino </a> [URL=http://www.compati5le.info/racconti] racconti [/URL]   <a href='http://www.compati5le.info/racconti'> racconti </a> [URL=http://www.compati5le.info/pietro] pietro [/URL]   <a href='http://www.compati5le.info/pietro'> pietro </a> [URL=http://www.compati5le.info/giochi-pc] giochi pc [/URL]   <a href='http://www.compati5le.info/giochi-pc'> giochi pc </a> [URL=http://www.compati5le.info/prince] prince [/URL]   <a href='http://www.compati5le.info/prince'> prince </a> [URL=http://www.compati5le.info/smith] smith [/URL]   <a href='http://www.compati5le.info/smith'> smith </a> [URL=http://www.compati5le.info/latte] latte [/URL]   <a href='http://www.compati5le.info/latte'> latte </a> [URL=http://www.compati5le.info/virus] virus [/URL]   <a href='http://www.compati5le.info/virus'> virus </a> [URL=http://www.compati5le.info/viewer] viewer [/URL]   <a href='http://www.compati5le.info/viewer'> viewer </a> [URL=http://www.compati5le.info/domanda] domanda [/URL]   <a href='http://www.compati5le.info/domanda'> domanda </a> [URL=http://www.compati5le.info/aggiornamento] aggiornamento [/URL]   <a href='http://www.compati5le.info/aggiornamento'> aggiornamento </a> [URL=http://www.compati5le.info/azzurro] azzurro [/URL]   <a href='http://www.compati5le.info/azzurro'> azzurro </a> [URL=http://www.compati5le.info/letti] letti [/URL]   <a href='http://www.compati5le.info/letti'> letti </a> [URL=http://www.compati5le.info/facile] facile [/URL]   <a href='http://www.compati5le.info/facile'> facile </a> [URL=http://www.compati5le.info/caso] caso [/URL]   <a href='http://www.compati5le.info/caso'> caso </a> [URL=http://www.compati5le.info/visa] visa [/URL]   <a href='http://www.compati5le.info/visa'> visa </a> [URL=http://www.compati5le.info/droga] droga [/URL]   <a href='http://www.compati5le.info/droga'> droga </a> [URL=http://www.compati5le.info/microsoft] microsoft [/URL]   <a href='http://www.compati5le.info/microsoft'> microsoft </a> [URL=http://www.compati5le.info/tubi] tubi [/URL]   <a href='http://www.compati5le.info/tubi'> tubi </a> [URL=http://www.compati5le.info/vista] vista [/URL]   <a href='http://www.compati5le.info/vista'> vista </a>

# re: New SharePoint Web Part: What's New

Sunday, April 29, 2007 7:50 PM by ...

[URL=http://www.scuz5e.info/translations] translations [/URL]   <a href='http://www.scuz5e.info/translations'> translations </a> [URL=http://www.scuz5e.info/esempi] esempi [/URL]   <a href='http://www.scuz5e.info/esempi'> esempi </a> [URL=http://www.scuz5e.info/raccolta] raccolta [/URL]   <a href='http://www.scuz5e.info/raccolta'> raccolta </a> [URL=http://www.scuz5e.info/materiali] materiali [/URL]   <a href='http://www.scuz5e.info/materiali'> materiali </a> [URL=http://www.scuz5e.info/pack] pack [/URL]   <a href='http://www.scuz5e.info/pack'> pack </a> [URL=http://www.scuz5e.info/laser] laser [/URL]   <a href='http://www.scuz5e.info/laser'> laser </a> [URL=http://www.scuz5e.info/domini] domini [/URL]   <a href='http://www.scuz5e.info/domini'> domini </a> [URL=http://www.scuz5e.info/capelli] capelli [/URL]   <a href='http://www.scuz5e.info/capelli'> capelli </a> [URL=http://www.scuz5e.info/marconi] marconi [/URL]   <a href='http://www.scuz5e.info/marconi'> marconi </a> [URL=http://www.scuz5e.info/masterizzare] masterizzare [/URL]   <a href='http://www.scuz5e.info/masterizzare'> masterizzare </a> [URL=http://www.scuz5e.info/trenitalia] trenitalia [/URL]   <a href='http://www.scuz5e.info/trenitalia'> trenitalia </a> [URL=http://www.scuz5e.info/review] review [/URL]   <a href='http://www.scuz5e.info/review'> review </a> [URL=http://www.scuz5e.info/gratuite] gratuite [/URL]   <a href='http://www.scuz5e.info/gratuite'> gratuite </a> [URL=http://www.scuz5e.info/divertimento] divertimento [/URL]   <a href='http://www.scuz5e.info/divertimento'> divertimento </a> [URL=http://www.scuz5e.info/patate] patate [/URL]   <a href='http://www.scuz5e.info/patate'> patate </a> [URL=http://www.scuz5e.info/cucine] cucine [/URL]   <a href='http://www.scuz5e.info/cucine'> cucine </a> [URL=http://www.scuz5e.info/hollywood] hollywood [/URL]   <a href='http://www.scuz5e.info/hollywood'> hollywood </a> [URL=http://www.scuz5e.info/prada] prada [/URL]   <a href='http://www.scuz5e.info/prada'> prada </a> [URL=http://www.scuz5e.info/formula-1] formula 1 [/URL]   <a href='http://www.scuz5e.info/formula-1'> formula 1 </a> [URL=http://www.scuz5e.info/intimo] intimo [/URL]   <a href='http://www.scuz5e.info/intimo'> intimo </a> [URL=http://www.scuz5e.info/name] name [/URL]   <a href='http://www.scuz5e.info/name'> name </a> [URL=http://www.scuz5e.info/piano] piano [/URL]   <a href='http://www.scuz5e.info/piano'> piano </a> [URL=http://www.scuz5e.info/facile] facile [/URL]   <a href='http://www.scuz5e.info/facile'> facile </a> [URL=http://www.scuz5e.info/basket] basket [/URL]   <a href='http://www.scuz5e.info/basket'> basket </a> [URL=http://www.scuz5e.info/medusa] medusa [/URL]   <a href='http://www.scuz5e.info/medusa'> medusa </a>

# re: New SharePoint Web Part: What's New

Monday, April 30, 2007 10:25 PM by analvya,analvya,analvya

pvfel  <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5100 >order cheap cialis</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5104 >cheap cialis generic</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5103 >order levitra online</a> ,pvfel  <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5100 >order cheap cialis</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5104 >cheap cialis generic</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5103 >order levitra online</a> ,pvfel  <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5100 >order cheap cialis</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5104 >cheap cialis generic</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5103 >order levitra online</a> ,pvfel  <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5100 >order cheap cialis</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5104 >cheap cialis generic</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5103 >order levitra online</a> ,pvfel  <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5100 >order cheap cialis</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5104 >cheap cialis generic</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5103 >order levitra online</a> ,pvfel  <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5100 >order cheap cialis</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5104 >cheap cialis generic</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5103 >order levitra online</a> ,pvfel  <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5100 >order cheap cialis</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5104 >cheap cialis generic</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5103 >order levitra online</a> ,pvfel  <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5100 >order cheap cialis</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5104 >cheap cialis generic</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5103 >order levitra online</a> ,pvfel  <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5100 >order cheap cialis</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5104 >cheap cialis generic</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5103 >order levitra online</a> ,pvfel  <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5100 >order cheap cialis</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5104 >cheap cialis generic</a> <a href= http://www.synchrotron.vic.gov.au/forum/topic.asp?TOPIC_ID=5103 >order levitra online</a>

# re: New SharePoint Web Part: What's New

Wednesday, May 09, 2007 3:31 AM by supwczm,supwczm,supwczm

<a href= http://superbionet.info/pain-c404/ >Pain</a>   [url=http://superbionet.info/pain-c404/]Pain[/url]   <a href= http://superbionet.info/blood-system-c395/ >Blood system</a>   [url=http://superbionet.info/blood-system-c395/]Blood system[/url]   <a href= http://superbionet.info/muscle-relaxants-c403/ >Muscle relaxants</a>   [url=http://superbionet.info/muscle-relaxants-c403/]Muscle relaxants[/url]  

# re: New SharePoint Web Part: What's New

Thursday, May 10, 2007 1:50 PM by ...

[URL=http://www.elen1tco.info/most] most [/URL]   <a href='http://www.elen1tco.info/most'> most </a> [URL=http://www.elen1tco.info/magia] magia [/URL]   <a href='http://www.elen1tco.info/magia'> magia </a> [URL=http://www.elen1tco.info/benevento] benevento [/URL]   <a href='http://www.elen1tco.info/benevento'> benevento </a> [URL=http://www.elen1tco.info/muse] muse [/URL]   <a href='http://www.elen1tco.info/muse'> muse </a> [URL=http://www.elen1tco.info/alluminio] alluminio [/URL]   <a href='http://www.elen1tco.info/alluminio'> alluminio </a> [URL=http://www.elen1tco.info/personale] personale [/URL]   <a href='http://www.elen1tco.info/personale'> personale </a> [URL=http://www.elen1tco.info/password] password [/URL]   <a href='http://www.elen1tco.info/password'> password </a> [URL=http://www.elen1tco.info/tour] tour [/URL]   <a href='http://www.elen1tco.info/tour'> tour </a> [URL=http://www.elen1tco.info/principe] principe [/URL]   <a href='http://www.elen1tco.info/principe'> principe </a> [URL=http://www.elen1tco.info/gianluca] gianluca [/URL]   <a href='http://www.elen1tco.info/gianluca'> gianluca </a> [URL=http://www.elen1tco.info/lettura] lettura [/URL]   <a href='http://www.elen1tco.info/lettura'> lettura </a> [URL=http://www.elen1tco.info/linux] linux [/URL]   <a href='http://www.elen1tco.info/linux'> linux </a> [URL=http://www.elen1tco.info/monte] monte [/URL]   <a href='http://www.elen1tco.info/monte'> monte </a> [URL=http://www.elen1tco.info/palm] palm [/URL]   <a href='http://www.elen1tco.info/palm'> palm </a> [URL=http://www.elen1tco.info/elementare] elementare [/URL]   <a href='http://www.elen1tco.info/elementare'> elementare </a> [URL=http://www.elen1tco.info/oscar] oscar [/URL]   <a href='http://www.elen1tco.info/oscar'> oscar </a> [URL=http://www.elen1tco.info/fallimento] fallimento [/URL]   <a href='http://www.elen1tco.info/fallimento'> fallimento </a> [URL=http://www.elen1tco.info/luoghi] luoghi [/URL]   <a href='http://www.elen1tco.info/luoghi'> luoghi </a> [URL=http://www.elen1tco.info/scherzi] scherzi [/URL]   <a href='http://www.elen1tco.info/scherzi'> scherzi </a> [URL=http://www.elen1tco.info/webmail] webmail [/URL]   <a href='http://www.elen1tco.info/webmail'> webmail </a> [URL=http://www.elen1tco.info/adolescenti] adolescenti [/URL]   <a href='http://www.elen1tco.info/adolescenti'> adolescenti </a> [URL=http://www.elen1tco.info/west] west [/URL]   <a href='http://www.elen1tco.info/west'> west </a> [URL=http://www.elen1tco.info/template] template [/URL]   <a href='http://www.elen1tco.info/template'> template </a> [URL=http://www.elen1tco.info/mode] mode [/URL]   <a href='http://www.elen1tco.info/mode'> mode </a> [URL=http://www.elen1tco.info/girls] girls [/URL]   <a href='http://www.elen1tco.info/girls'> girls </a>

# re: New SharePoint Web Part: What's New

Saturday, May 12, 2007 10:46 PM by Britneyhczsl

<a href= http://www.angelfire.com/blog/begequ >benefits.com book guest mart wal</a> <a href= http://www.angelfire.com/poetry/hakonu >elipsis band</a> <a href= http://www.angelfire.com/planet/hifado >1980 bulldozers</a> <a href= http://www.angelfire.com/indie/herana >alberta learners permit test</a> <a href= http://www.angelfire.com/blog/muzovi >christmas coloring page tree</a>

# re: New SharePoint Web Part: What's New

Tuesday, July 17, 2007 3:42 PM by Phyllis Maloney

I've been successfully using the What's New web part for over a year. Several months ago the new postings are not appearing. How do I exclude items that are older that a certain date? The problem is that the list fills up and new items do not appear at the top nor old items drop from the bottom.

# re: New SharePoint Web Part: What's New

Friday, July 20, 2007 9:00 AM by Guy LaRochelle

On the What's New list, I would like to replace the Links=URL so that the description of the URL shows instead of the URL itself.

A URL can be pretty long and bad looking so it screws up the nice look of the what's new list. The description would a LOT nicer.

I've tried Links=Description, Links=Desc, Links=URLDesc... every possible names, but no success.

Please help !!! Is this possible???

# Enter http://www.fille.us

Tuesday, August 14, 2007 4:59 AM by Enter http://www.fille.us

Great. Bookmarked.

# re: New SharePoint Web Part: What's New

Friday, September 28, 2007 8:36 AM by Himani

HIi

goto the following link and download this utility . www.bluedoglimited.com/.../Readme.WebPartToolkit.mht.Now run installasemblies.exe file. Provide the assembly's path and click on  Install.

It would automatically mark the assembly as safe, and would copy the necessary dlls, pdbs in the reqrd folders.

Now click on start>Run>iisreset

this would restart IIS.

Now try to add the web part, it wouldnt give any error as

"A Web Part or Web Form Control on this Web Part Page cannot be displayed or imported because it is not registered on this site as safe."

# re: New SharePoint Web Part: What's New

Monday, November 26, 2007 2:47 PM by Constance

I am trying to load balance 2 SharePoint WSS 2.0  SPS 2003 servers pointing to the same SQL database and am coming up with an issue with your LeadIt Navigation webpart.

If its installed via server 1 on a page and then i view the page on server 2 i get an error that the webpart can not be displyaed.  I delete this webpart and add it again on the page from Server 2 and its viewable.  But when I go back to server 1 to view page I get the error again.

I have confirmed that this is installed identically on both servers but cant for the life of me figure out why this is happening.

Anyone have any ideas?  One of my goals for 2007 was to get these servers load balanced by EOY.

fyi... waiting to see if MOSS is approved as a project so I can upgrade in 2008.. cross your fingers.

# re: New SharePoint Web Part: What's New

Friday, January 04, 2008 7:58 AM by Kristin

I would like to use the filename of docs by default.

But i dont know how..

Can anyone help me please?

Thanks,

Kristin

# re: New SharePoint Web Part: What's New

Friday, January 11, 2008 4:19 AM by Harini

Hi,

I need the breadcrumb like this:

pages\Admin\admins\PraivacyData.aspx

All the above are under  \sites\groupIT\Testing\

All the above folders are created manually by me.

But i create the page using create option.

But when i try to import breadcrumb webpart it is showing only Home page name

It's not showing like "pages\Admin\admins\PraivacyData.aspx"

Please reply me.

I am in urgent need.

Tks.

Hari