by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
So one day, suddenly I find my development environment out of drive space, never good, but its my dev box and not a production system. So that’s the good news. Production Environment Fix(Contentdb): So I start poking around and find that the content database is...
by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
http://tech.pro/tutorial/1155/obtaining-method-caller-information-in-c
by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
It appears that SPWeb.Users.GetCollection is not bound to its initialized web although SPWeb.Users[username] and SPWeb.Users.GetByEmail(email) are. The unfortunate thing, SPWeb.Users[username] and SPWeb.Users.GetByEmail(email) both throw exceptions if nothing is...
by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
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...