Blog Home  Home Feed your aggregator (RSS 2.0)  
My DasBlog! - Friday, July 01, 2005
newtelligence powered
 
Friday, July 01, 2005 12:55:41 PM (GMT Daylight Time, UTC+01:00)  #    Comments [2]   ASP.NET | C#  | 
I came accros a post, forget from who, referring to a article written by Heather Solomon. It describes a questionaire for SharePoint to gather information for determining which product implementation suit their needs. It helps you to decide between a Portal, WSS or both.

I think this questionaire is very helpfull for this kind of descisions and Heather did a great job posting it for all of us! Thanks Heather.

http://heathersolomon.com/blog/articles/446.aspx
Friday, July 01, 2005 9:53:31 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0]   SharePoint  | 

There is a whitepaper found at winapp technology which explains how to inject some more of Office back into SharePoint with an "Outlook Send Tool" developed by them.

"This Winapp Technology whitepaper explains how to inject some more of office back into SharePoint with these code snippets and customizations that allow you to select multiple files in a document library and send links and attachments from Sharepoint."

Follow the following link to receive a free article and code:

http://www.winapptechnology.com/wtregistration/registration.aspx?registrationid=2&callingurl=www.winapptechnology.com

Friday, July 01, 2005 7:37:12 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0]   SharePoint | Third-Party  | 

Mark Harrison mentioned the new Telerik site in a post yesterday. It is a company specialised delivering controls to make it for us, as developers,  a lot easier. They have a WYSIWYG editor called the r.a.d.editor implemented as a WebPart for easy integration into SharePoint. I'm currently working on a SharePoint project where the user has to make changes to articles using this WebPart.

http://www.sharepointcontrols.com/Default.aspx?PageId=2466

 

Friday, July 01, 2005 7:23:18 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0]   SharePoint | Third-Party  | 
# Thursday, June 30, 2005

At the blog SharePoint from Scratch an article is posted which describes a ways to delete a personal site in SharePoint. As you know the personal sites exists only in the database and uses the same aspx files. The following walkthrough finds the correct url for the personal site and makes it possible to delete it through the "Site Administration".

  • Click on Site Settings.
  • Under User Profile, Audiences, and Personal Sites click Manage Profile Database.
  • Click  View User Profiles
  • Search for yourself, hover over your name and select Manage Personal Site.  At this point you could get the error User Has Not Create a Personal Site.
  • Look at the URL: http://MyPortal/personal/MyUserName/_layouts/1033/settings.aspx
  • Now you can add anyone's username to the URL and get the site settings for that user.
  • From there, you can click on Site Administration and the Delete This Site.

http://sharepointblogs.com/spfromscratch/archive/2005/06/29/2311.aspx

Thursday, June 30, 2005 7:19:51 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0]   SharePoint  | 
# Wednesday, June 29, 2005

Tim Heurer pointed out to us that there are free virtual labs and webcasts available for during your lunch hours. You can find them at www.lunchwithmicrosoft.com.

http://timheuer.com/blog/archive/2005/06/29/2335.aspx
Wednesday, June 29, 2005 3:58:25 PM (GMT Daylight Time, UTC+01:00)  #    Comments [0]   Learning | Microsoft  | 

My collegea Mart wrote an article about the last modified date of a WSS site. The SPSite class has a property called LastItemModifiedDate returning the last date of modified content. If the method GetSubwebsForCurrentUser is used this property does not contain a value when used for the root web. The following definition of both members is found in the MSDN library:

 

LastItemModifiedDate
property of the SPList class gets the date and time that an item, field, or property of the list was last modified.

LastContentModifiedDate
property of the SPSite class gets in Coordinated Universal Time (UTC) the date and time when the content of the site was last changed.

 

Mart and Tariq give us a solution for this problem by getting the SPVirtualServerCollection of the SPGlobalAdmin and then looping through the Sites collection per SPVirtualServer. The property LastContentModifiedData is filled in. :)

Thanks guys! I'm gonna need this in one of my next projects

http://blogs.tamtam.nl/mart/SharePointTipLastItemModifiedDateAndLastContentModifiedDate.aspx

Wednesday, June 29, 2005 3:36:51 PM (GMT Daylight Time, UTC+01:00)  #    Comments [0]   SharePoint  | 

The support for additional languages under WSS is larger then for SPS. It is possible to install additional languages next to the selected language at installation. When creating WSS sites the user can choose from the installed languages. See following article:

http://support.microsoft.com/default.aspx?scid=kb;en-us;555106

This is a link to an add-on package for WSS giving allowing the users to create WSS sites in other languages then the default language at installation.

http://www.microsoft.com/downloads/details.aspx?FamilyID=e7eec77d-4365-4b66-8e8d-9d079c509679&DisplayLang=en

Wednesday, June 29, 2005 10:52:09 AM (GMT Daylight Time, UTC+01:00)  #    Comments [4]   SharePoint  | 

Tom van de Kerkhof has written a very cool WebPart which makes it possible to change your active directory password through a WebPart. It uses the SmartPart written by Jan Tielens. More information about SmartPart can be found at www.smartpart.info.

You can download the WebPart at his blog. :) My compliments!!

http://www.blogs.jpworks.be/Tom/PermaLink.aspx?guid=983ea9cf-3b9b-416e-8a49-d1152c7af60c

Wednesday, June 29, 2005 8:31:43 AM (GMT Daylight Time, UTC+01:00)  #    Comments [1]   SharePoint  | 
# Thursday, June 23, 2005
One of my collegea likes to have pop quizes about C# programming snippets. One of the questions he gave us yesterday was the following. If you have two classes class A and class B implementing the same interface and class A is derived from class B and you would cast an instance of class A to the interface which method is called. The one of class A or class B. It is actually very simple...
Thursday, June 23, 2005 8:55:19 AM (GMT Daylight Time, UTC+01:00)  #    Comments [1]   C#  | 
# Friday, July 01, 2005

 If you use for example a Repeater and you do not want to show some field from the DataSource based on a expression, you could use the following solution. This example hides the year when the year in the DataSource is zero.

<asp:Repeater runat="server" id="rptGroup">
   <HeaderTemplate>
      <table>
   </HeaderTemplate>
   <ItemTemplate>
      <tr><td>
         <asp:Label id="lbl" runat="server" 
            Visible='<%#DisplayYear(DataBinder.Eval(Container.DataItem, "year"))%>'>
            <%#DataBinder.Eval(Container.DataItem, "year")%>
         </asp:Label>
      </td></tr>
   </ItemTemplate>
   <FooterTemplate>
      </table>
   </FooterTemplate>
</asp:Repeater>

In the code-behind the following method is added:

public bool DisplayYear(object item)
{
   int year = 0;

   try
   {
      year = Convert.ToInt32(item);
   }
   catch(exception)
   {
   }

   return year != 0;
}

<%#DataBinder.Eval(Container.DataItem, "wi_area")%>
<%#DataBinder.Eval(Container.DataItem, "wi_year")%><%#DataBinder.Eval(Container.DataItem, "co_name")%><%#DataBinder.Eval(Container.DataItem, "wi_amount")%><%#DataBinder.Eval(Container.DataItem, "wi_price", "{0:f}")%>
Copyright © 2010 Alexander Meijers. All rights reserved.
DasBlog 'Portal' theme by Johnny Hughes.
Pick a theme: