Blog Home  Home Feed your aggregator (RSS 2.0)  
My DasBlog! - Monday, July 11, 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  | 
# Monday, July 11, 2005

Hi there all,

Maybe some of you already noticed, my blog moved to a new location. The new location is http://net.bloggix.com.

For all those people reading my blog, thank you all!! :)

The old RSS feed is still working but will be gone in some time. A new RSS feed is available at: http://net.bloggix.com/SyndicationService.asmx/GetRss

Thanks :)

Alex

Monday, July 11, 2005 4:36:09 PM (GMT Daylight Time, UTC+01:00)  #    Comments [0]    | 

At the blog of Stramit's SharePoint Blog a great article explains how to create rounded header corners for a WebPart by just using CSS styles. 2 cells and 2 styles are used namely: ms-WPTitle and ms-WPHeader.

Before

After

http://blog.spsclerics.com/archive/2005/07/11/5421.aspx

 

Monday, July 11, 2005 1:24:12 PM (GMT Daylight Time, UTC+01:00)  #    Comments [0]   SharePoint  | 

One of my collegea pointed out a link to "patterns & practices Enterprise Library - June 2005" containing the following as stated on the website of Microsoft:

"The patterns & practices Enterprise Library is a library of Application Blocks designed to assist developers with common enterprise development challenges. Application Blocks are a type of guidance, provided as source code, that can be used as-is, extended or modified by developers for use on enterprise development projects. The June 2005 release of Enterprise Library is a minor update of the original version released in January 2005. Enterprise Library features new and updated versions of application blocks that were previously available as stand-alone blocks. All blocks included in Enterprise Library have been updated with a particular focus on consistency, extensibility, ease of use and integration."

http://www.microsoft.com/downloads/details.aspx?familyid=A7D2A109-660E-444E-945A-6B32AF1581B3&displaylang=en

A must have for every developer :) Thanks Stef!!

Monday, July 11, 2005 7:31:31 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0]   Microsoft  | 

Angus Logan has been using AJAX.NET under SharePoint and came accross a "cast exception" when using RegisterTypeForAjax. He explains in his article a solution for this by adding manually the client side references to AJAX.NET.

http://msmvps.com/anguslogan/archive/2005/07/09/56884.aspx

Monday, July 11, 2005 7:05:40 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0]   SharePoint  | 
# Monday, July 04, 2005

The new Office Business Scorecard Server 2005 Beta 1 is available with the following features and benefits

  • Align actions with strategy
  • Gain complete insight in context
  • Collaborate on business management and action.
  • Empower employees to monitor and deliver against key metrics
  • Achieve extensible functionality

The Beta software can be downloaded using the following link:

http://msdn.microsoft.com/isv/technology/bss/beta/default.aspx

Rumours says that in the last weeks of july beta 2 will be released. It is worth while waiting for that version to start with :)

Monday, July 04, 2005 7:23:57 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0]   SharePoint  | 
# 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 © 2012 Alexander Meijers. All rights reserved.
DasBlog 'Portal' theme by Johnny Hughes.
Pick a theme: