|
Navigation
Categories
Entries by Month
| October, 2008 (1) |
| September, 2008 (1) |
| July, 2008 (4) |
| June, 2008 (6) |
| May, 2008 (2) |
| March, 2008 (5) |
| December, 2007 (1) |
| October, 2007 (1) |
| September, 2007 (2) |
| May, 2007 (1) |
| April, 2007 (5) |
| October, 2006 (1) |
| July, 2006 (2) |
| June, 2006 (6) |
| January, 2006 (2) |
| December, 2005 (6) |
| November, 2005 (9) |
| October, 2005 (9) |
| September, 2005 (3) |
| August, 2005 (11) |
| July, 2005 (20) |
| June, 2005 (3) |
| May, 2005 (5) |
| April, 2005 (5) |
| March, 2005 (5) |
| February, 2005 (5) |
| January, 2005 (13) |
| December, 2004 (10) |
| November, 2004 (6) |
| October, 2004 (2) |
| September, 2004 (7) |
| August, 2004 (8) |
| July, 2004 (8) |
| June, 2004 (4) |
| May, 2004 (13) |
| April, 2004 (14) |
| March, 2004 (33) |
| February, 2004 (1) |
| May, 2003 (6) |
| April, 2003 (5) |
| March, 2003 (4) |
| February, 2003 (1) |
| January, 2003 (6) |
|
|
|
 Friday, March 04, 2005
Full Source Full Source is an Internet Explorer menu extension which displays the source Internet Explorer is displaying, directly from the Internet Explorer object model. This is useful wherever javascript is dynamically writing HTML into the DOM, or where XSLT has been used to generate HTML.
If you have ever looked at the source of a list edit form, you'll know that you need this utility!
Their other utility (Toggle Borders) is neat as well.
 Wednesday, March 02, 2005
In Part 2 of my continuing series on Intranet Journal, I look at the basic installation of a corporate intranet and some basic customization options.
Thanks to Bob Mixon for his technical review.
 Thursday, February 24, 2005
I had an interesting email conversation today discussing SharePoint and it occurred to me that it is possible to try it out free of charge.
Jan. 12, 2006: Updated the links to point to the most recent versions.
 Friday, February 18, 2005
 Monday, February 07, 2005
 Thursday, February 03, 2005
 Wednesday, February 02, 2005
I found a post of mine on a different website. They obviously are reading my RSS feed, but it doesn't look like it:

I DID NOT SUBMIT THIS!!!! And what pisses me off is that they have Google Ads on that page.
If you know who runs this site -- have them stop. (Or they can pay me.)
 Monday, January 31, 2005
I wrote in my previous post that you should use http to access web part resources. Well guess what -- there is more to it.
If your WSS site is running with anonymous access off, then the attempt to get the resource will fail with a 401 Unauthorized error. This happens because web requests made in code will perform an anonymous GET.
In my specific case, I was attempting to read an XSLT file from the resource directory by passing the URL to the file. To solve the security issue, the Load() method on the XslTransform object needs a security resolver. The code necessary for this (which I copied from the .Net SDK):
' Build the URI to the resource Dim resourceURI As Uri = New Uri(ClassResourcePath) Dim xslPath As String = Path.Combine(resourceURI.ToString(), "filename.xsl")
' Create a secure resolver with default credentials. Dim resolver as XmlUrlResolver = new XmlUrlResolver() Dim sResolver as XmlSecureResolver = new XmlSecureResolver(resolver, xslPath) sResolver.Credentials = CredentialCache.DefaultCredentials
' Get the xsl file Dim trn As XslTransform = New XslTransform trn.Load(xslPath, sResolver)
|
|
Search

Further Reading...
Powered by: newtelligence dasBlog 2.2.8279.16125
The opinions expressed herein are my own personal opinions and do
not represent my employer's view in anyway.
© Copyright 2008, Paul Schaeflein
E-mail
|