509.949.2162 jeremy@bondbyte.com

Blog

SharePoint 2013 Design Packages broken

We were attempting to use Responsive SharePoint from CodePlex, They've done a lot of heavy lifting with regards to implementing Twitter Bootstrap within SharePoint 2013. After some testing we found that certain sites were becoming corrupt and throwing Errors and...

TSQL: Search All Tables

/****** Object: StoredProcedure [dbo].[SearchAllTables] Script Date: 3/14/2013 8:01:42 AM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROC [dbo].[SearchAllTables] ( @SearchStr nvarchar(100) ) AS BEGIN -- Copyright © 2002 Narayana Vyas Kondreddi....

Session State in SharePoint

I tried using Session state today in a web part I was developing, it failed, the session was always null. I followed the best practices, verified it was enabled in web.config, it wasn't, so I turned it on. EnableSessionState="true".   I tried my webpart again,...