Showing posts with label SharePoint Development. Show all posts
Showing posts with label SharePoint Development. Show all posts

10/26/2011

SharePoint Saturday Cincinnati is ... well this Saturday!

 

Cincinnati’s first SharePoint Saturday is in three days! Are you registered yet? If not, go here now: http://www.sharepointsaturday.org/cincinnati/default.aspx

With twenty different presentations you can’t miss!

 

I will be giving two presentations:

  SharePoint Governance... It may not be what you think it is...

and

  SharePoint 2007, 2010 and Office 365 for Site Owners and Power Users

 

 

                                Tweet it! (#SPSCincinnati)

                                     Blog it!

                                         Be there! 

                                             and Learn!

                                                                and remember… it’s FREE!

.

10/15/2011

SharePoint 2010 Book Recommendations

I have not created a book list in quite a while and needed to put together an updated SharePoint 2010 book list for the folks who attend my classes. This list is not complete and unless otherwise noted only contains books I have personally reviewed.

Let me know of there are any other books you think I should review and possibly add to this list…

 

 

Categories of books below:

  • SharePoint 2010- “the big picture” / overview / understanding
  • SharePoint 2010 End Users / Site Owners / Power Users
  • SharePoint 2010 Administrator
  • SharePoint 2010 Developer
  • SharePoint 2010 Governance

 

SharePoint 2010 - “the big picture” / overview / understanding

Essential SharePoint 2010: Overview, Governance, and Planning (Addison-Wesley Microsoft Technology Series)
This book is for anyone wanting to find out what SharePoint can do. It's sometimes described as the book to give to your manager who knows nothing about SharePoint and wants to know what it can do while not having to learn every detail about how to do it.

 

SharePoint 2010 End Users / Site Owners / Power Users

SharePoint End User

SharePoint 2010 How-To

Click here for my review of this book.

 

SharePoint Workflows

SharePoint 2010 Workflows in Action

Includes both SharePoint Designer and Visual Studio workflow topics.

 

SharePoint Designer

Microsoft SharePoint Designer 2010 Step by Step (Step by Step (Microsoft))

 

SharePoint Branding and Customization

My book of course!

SharePoint 2007 and 2010 Customization for the Site Owner

This book is designed to get you started in customizing your SharePoint site with the tools you have readily at hand. This book has complete copy and paste solutions, and it also shows how each solution was crafted and how it works. After working through a few of the customizations and picking up some basic skills, you can start to figure out how SharePoint has been put together and start creating your own customizations.

SharePoint 2010 branding in practice: a guide for web developers

Click here for my review of this book.

 

SharePoint and InfoPath

Designing Forms for SharePoint and InfoPath: Using InfoPath Designer 2010 (2nd Edition) (Microsoft .NET Development Series)

 

SharePoint 2010 Administrator

These include books for everyday use and for certification prep.

(1) = I supply this book with my “SharePoint 2010 Certification Bootcamp for Administrators” class.

SharePoint Administration

Mastering Microsoft SharePoint Foundation 2010 (1)

Click here for my review of this book.

Microsoft SharePoint 2010 Administrator's Companion (1)

Essential SharePoint 2010: Overview, Governance, and Planning (Addison-Wesley Microsoft Technology Series)  (1)
This book is for anyone wanting to find out what SharePoint can do. It's sometimes described as the book to give to your manager who knows nothing about SharePoint and wants to know what it can do while not having to learn every detail about how to do it.

 

SharePoint and PowerShell

Automating SharePoint 2010 with Windows PowerShell 2.0

Excellent book! Over 700 pages on both PowerShell for SharePoint and "got to knows" about administration. If you are building multiple farms, finding yourself doing the same thing over and over again, or creating a scripts for a disaster recovery plan, then you need this book!

 

 

SharePoint 2010 Developer

These include books for everyday use and for certification prep.

(2) = I supply this book with my “SharePoint 2010 Certification Bootcamp for Developers” class.

SharePoint Development

SharePoint 2010 Development with Visual Studio 2010 (Microsoft .NET Development Series) (2)

Professional SharePoint 2010 Development (Wrox Programmer to Programmer) (2)

Inside Microsoft SharePoint 2010 (2)

 

SharePoint Workflows

SharePoint 2010 Workflows in Action (2)

Includes both SharePoint Designer and Visual Studio workflow topics.

SharePoint Governance

SharePoint Deployment and Governance Using COBIT 4.1: A Practical Approach

Click here to read an excerpt of this book on TechNet.

.

10/13/2011

Heather Solomon’s CSS Chart now available for SharePoint 2010!

 

Heather Solomon’s CSS reference chart for SharePoint 2007 has always been a required bookmark for customizers. When Heather spoke at the Cincinnati SharePoint User Group meeting a while back she hinted that a new chart was in the works…. Heather has released a new CSS reference chart for SharePoint 2010!

 

SharePoint 2010 CSS Reference Chart:

  http://sharepointexperience.com/csschart/csschart.html

 

SharePoint 2007 CSS Reference Chart:

  http://www.heathersolomon.com/content/sp07cssreference.htm

 

.

10/03/2011

Get the current URL in a SharePoint page or web part

 

Just a quick note on getting the URL of the current page in a SharePoint C# project.

 

Three ways:

#1 (preferred if there is also a query string in the URL)

   string url = Request.Url.AbsoluteUri;

#2

   string url = "http://" + Request.ServerVariables["SERVER_NAME"] + Request.ServerVariables["URL"];

#3 (preferred for web parts - see below)

   string url = SPContext = " + SPContext.Current.Web.Url + "/" + SPContext.Current.File.Url;

 

Notes:

#1 will return the query string, while #2 and #3 will not.

#1 and #2 will give you odd results when used in a Layouts application page:

URL of page:
  http://intranet/sites/training/_layouts/SharePointProject3/ApplicationPage1.aspx

Returned from both #1 and #2:
  http://intranet/_layouts/SharePointProject3/ApplicationPage1.aspx

#2 when used in a web part will need System.Web.HttpContext.Current.Request:

"http://" + System.Web.HttpContext.Current.Request.ServerVariables["SERVER_NAME"] + System.Web.HttpContext.Current.Request.ServerVariables["URL"];

 

.

9/19/2011

Do want to explore SharePoint 2010?

 

Would you like to explore SharePoint 2010, but don’t want to build your own SharePoint server? A year or two ago I would have told you to build your own servers, or download the Information Worker evaluation virtual hard disk.

There’s a third option that will serve the needs of many of the curious… Office 365. Just go here and sign up for a demo account and explore away for thirty days!

 

Three options…

1) Signup for a SharePoint / Office 365 demo (free for 30 days)

You will get access to SharePoint from the point of view of a Site Collection Administrator and be able to create Site Collections, Sites, Lists, Libraries and even create and upload Visual Studio sandboxed solutions.
 

2) Download the 2010 Information Worker Demonstration and Evaluation Virtual Machine from here

You will get a full SharePoint Enterprise Edition, FAST search, Office 2010, Visual Studio 2010, Lync server, SQL server and a whole lot of other stuff! You will need a server running HyperV or a PC running Virtual Box.
 

3) Build your own server or virtual machines using the 180 day evaluation copies of SharePoint, Windows, SQL, Office, Visual Studio, etc.

You'll both learn how to build SharePoint farms and how to use all of the tools.

9/18/2011

SharePoint 2010 Developer’s Certification Boot Camp!

 

One week to go! Two month’s ago MAX Technical Training and I put together a 6 day, 11 hours per day, SharePoint administrator’s certification boot camp (MA-1071). It was so much fun that we decided to do it again, but for developers this time. A week from now we will deliver a certification boot camp for developers (MA-1072).

 

Here’s what’s included in the boot camp:

  • Microsoft Official SharePoint Courseware for:
    • Course 10175 - Microsoft SharePoint 2010 Application Development
    • Course 10232 - Designing and Developing Microsoft SharePoint Server 2010 Applications

      Two five days classes in one week!
       
  • Exam Vouchers for:
    • Exam 70-573: Technical Specialist: Microsoft SharePoint 2010, Application Development
    • Exam 70-576: IT Professional: Designing and Developing Microsoft SharePoint 2010 Applications
       
  • Books, books, books:
    • Essentials SP 2010    ISBN – 0321700759
    • SharePoint 2010 Development & Visual Studio 2010 (MS .NET Development Series)    ISBN- 0321718313
    • Inside Microsoft SharePoint 2010     ISBN – 0735627460
    • SharePoint 2010 Dev Pro     ISBN – 0470529423
    • SharePoint 2010 Workflows in Action     ISBN – 9781935182719
       
  • Some cool toys (maybe a helicopter!)  
     
  • Breakfast and lunch every day and all of the coffee and snacks needed to keep you going for 11 hours a day!
     
  • And a whole lot of learning, lecture and hands-on labs!

There’s still time to register!  Just click here…

 

.

8/18/2011

Access Services – Simple problem, simple fix

 

Access Services – An error has occurred…

 

I “thought” I had everything setup in my test environment that was needed to support Access Services. Then I created a new site based on the “Issues Web Database” template… and got this:

image

 

“An error has occurred”, now there is a useful error message! No question about the cause there! Clicking around the site got me these useful popups:

image

 

Nothing in the Windows Event logs about Access Services. No SharePoint 2010 Correlation ID displayed anywhere. Nothing in the SharePoint logs with the words “Access” or “issues”.

 

The Problem?

 

A bit embarrassing… Access Services was not started.

image 

 

Started the service, and everything worked!

 

I nominate this error message…

as a classic….

    image

 

.

Note to spammers!

Spammers, don't waste your time... all posts are moderated. If your comment includes unrelated links, is advertising, or just pure spam, it will never be seen.