SharePoint / ASP.Net Development
Experiences from the field...
Navigation
   RSS 2.0
Categories
Entries by Month

# 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.

Friday, March 04, 2005 2:28:03 PM (Central Standard Time, UTC-06:00)  #    Comments [0]  | 
# 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.

Wednesday, March 02, 2005 10:43:58 AM (Central Standard Time, UTC-06:00)  #    Comments [0]  | 
# 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.

Thursday, February 24, 2005 2:08:12 PM (Central Standard Time, UTC-06:00)  #    Comments [0]  | 
# Friday, February 18, 2005
Friday, February 18, 2005 11:54:08 PM (Central Standard Time, UTC-06:00)  #    Comments [0]  | 
# Monday, February 07, 2005

The first article in my new series at IntranetJournal.com is now posted.

You can post feedback on IntranetJournal's Discussion Forum or post comments on my blog site.

Monday, February 07, 2005 3:57:19 PM (Central Standard Time, UTC-06:00)  #    Comments [4]  | 
# Thursday, February 03, 2005

I don't know who "James" is ;-), but he has some great posts about the Microsoft Office System Developer Conference.

http://jamesasher.blogspot.com

Thursday, February 03, 2005 12:01:02 PM (Central Standard Time, UTC-06:00)  #    Comments [0]  | 
# 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.)

Wednesday, February 02, 2005 1:18:27 PM (Central Standard Time, UTC-06:00)  #    Comments [0]  | 
# 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)

Monday, January 31, 2005 2:14:25 PM (Central Standard Time, UTC-06:00)  #    Comments [0]  | 
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

Send mail to the author(s) E-mail