SharePoint, XBOX, .NET, Technology - What I am reading

    [Home] [Recent] [Site Map] [SharePoint] [XBOX]

   

SharePoint Blogs

10/11/2007 «Error: File not found.» when you upgrade WSS v2 to WSS v3 with anonymous access
Florin just emailed me requesting to help on letting the word out on with the solution for this problem he was facing, so here it is, on his own words: « If you upgrade from WSS 2.0 to Wss 3.0 and configure WSS 3.0 with anonymous access, you might get the following error while trying to create websites: Error: File not found. Looking at the Verbose Logfiles, you might get the following Error message: Application error when access /_layouts/newsbweb.aspx, Error=A aplicação Web não foi encontrada em...(read more)
10/11/2007 InfoPath Development Tip : Use relative path to access node within Node Collection
Use Relative node name within Node collection to access the properties. Do not use absolute path to access the values. Let us say, you wanted to loop through the node collection and access the value for the child node for each node in the collection. //Parent Node XPathNavigator selectNode = tempXPath.SelectSingleNode( "/my:ExpenseReport/my:TravelExpenses/my:travelExpense[" + i + "]" , NamespaceManager); //Do not use the below mentioned way(Absolute path) to access the values...(read more)
10/11/2007 Meeting Workspace Master Page Woes
If you have no need or plans to use Meeting Workspaces in your SharePoint site, you can skip this. You can always come back and go through this in case you do decide to use Meeting Workspaces. For those of you who are planning on using Meeting Workspaces, this post is for you. By default when you create a Meeting Workspace site, it uses it's own master page called the mwsdefault.master. This file is stored in the Global folder in the 12 directory (12\Template\Global) on the SharePoint web server...(read more)
10/11/2007 Missing Web Applications When Creating SSP
Have you ever gone to create a Shared Services Provider only to discover that the Web Application dropdownlist(s) are missing your Web Applications? Here is a work-around to create the shared services provider manually using the stsadm tool. (Only the required parameters are included) C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\bin\stsadm.exe stsadm –o CreateSSP -title SSP1 -url http://MOSSSite -mySiteUrl http://MySite.MOSS -sspLogin domain\user -sspPassword password ...(read more)
10/11/2007 Query Multiple Lists using SPSiteDataQuery class

I will take an example of searching files added in last 7 days in 'document library.

 
using (SPWeb web = SPContext.Current.Web)      //Best practice to use SPWeb in using.
{

    DataTable dt;
    SPSiteDataQuery Query = new SPSiteDataQuery();      //Instantiate SPSiteDataQuery

    //Date value in CAML query is accepted in a specific format. Below is the format accepted. 

    string str7DaysBackDateTime = (DateTime.Now.Add(new TimeSpan(-7, 0, 0, 0, 0))).ToString("yyyy-MM-ddThh:mm:ssZ");
    string strQuery = String.Format("<Where><Gt><FieldRef Name=\"Modified\" />"
                +"<Value Type=\"DateTime\">{0}</Value></Gt></Where>"
                +"<OrderBy><FieldRef Ascending=\"FALSE\" Name=\"Modified\"/></OrderBy>"
                , str7DaysBackDateTime);
    Query.Query = strQuery;                     //Assign CAML query(without <Query> tag.
    Query.RowLimit = 15;                           //Max Number of rows you want in the result.
    StringBuilder sb = new StringBuilder();
    sb.Append("<Lists>");
    foreach (SPList list in web.Lists)
    {
        if (list.BaseType == SPBaseType.DocumentLibrary)
        {
            sb.Append("<List ID=\"" + list.ID.ToString() + "\"/>");
        }
   }
   sb.Append("</Lists>");
   Query.Lists = sb.ToString();         //The lists on which you want your query to be run.
                   
   dt = web.GetSiteData(Query);

}

I guess the above code is selft explanatory and is having enough comments also to explain the things.

 

akhilesh tiwari
 


Posted on SharePoint Blogs
10/11/2007 Stability and performance update for Windows Vista
Yesterday evening my laptop with Vista already got too slow for normal work that I started to think about reinstalling. But instead I decided to use the performance tools in control panel and I made serious maintenance plus I turned off some features Read More......(read more)
10/11/2007 New SharePoint Training Courses @ the Ted Pattison Group
SharePoint Administration: A few months ago I blogged about Shane Young joining up with us at the Ted Pattison Group to write a MOSS administrator's course. The class is already scheduled for the first delivery on October 29th in Tampa, FL (with a Read More......(read more)
10/11/2007 Give good news frequently; give bad news early
I've been a consultant for a lot of years now and as any experienced consultant knows, good communication is one of the key pillars to the successful delivery of a project. It's so obvious, it's really almost boring to talk about. This isn't Read More......(read more)
10/11/2007 Enterprise Social book marking and SharePoint
Body: I've just started reading Bill Ives blog which focuses on Portals and Knowledge Management. One article covers what IBM are doing in this space. I've been preparing for another presentation on Enterprise Social Networking and have been approaching Read More......(read more)
10/11/2007 SharePoint 2007 Licensing Information Part III: FAQ
Body: In Part III in this mini-series on SharePoint 2007 licensing, I'm merely answering some of the questions that I've been emailed over the past couple of months. As I've stated in previous posts, you absolutely should work with either Read More......(read more)
上一页 1 2 3 4 5 6 7 8 9 10 下一页

   

Site List:
>>Xbox Live_s Major Nelson
>>Xbox 360 & SharePoint 2007 Weblog
>>Carsten Keutmann_s Blog
>>Mohamed Zaki_s Blog [Sharepoint MVP]
>>The Mit_s Blog
>>Mart Muller_s Sharepoint Weblog
>>Microsoft SharePoint Products and Technologies Team Blog
>>SharePoint Solutions Blog
>>4GuysFromRolla.com Headlines
>>ASP.NET Blogs
>>SharePoint Blogs
>>SharePoint Blogs
>>Joel on Software
>>ADO Guy_s Rants and Raves
>>Microsoft Live Labs
>>GadgetNews
>>Windows Vista Team Blog
>>VoIP & Gadgets Blog
>>schrankmonster blog
>>Via Virtual Earth Blog
>>Feed
>>MSDN Blogs
>>Mashable!

Links:
Jack's Readings

Month Archives:
Oct 2007
Sep 2007

Top Tags:
social software social networking .NET mashable Sharepoint ASP.NET Web 2.0 Web2.0 Startups Community News Search Marketplace General Software Development AJAX Windows Vista Visual Studio Microsoft myspace Silverlight People Powered! YouTube Vista MOSS Featured News C# Events MOSS 2007 Google WPF Office 2007 Web Community Security General Personal Xbox 360 facebook Tools development SharePoint 2007 Fun Atlas Architecture ASP.NET AJAX myspace codes TheLongTail IIS SQL Server Developers Revenue Sharing Video Pictures WCF Mobile 2.0 Announcements Orcas MIX07 Arcade Team System JavaScript News



@2007 All rights Reserved