A nice Visual Studio plug in that allows to visualize linq queries.
Some stuff around .NET
This rocks. I can use my google blog using Internet Explorer integrated with delicious.
Protected Sub AddCustomHeaders(ByVal virtualDirName As String)
Dim strPath As String = "IIS://localhost/W3SVC/1/Root/" & virtualDirName
Dim de As DirectoryEntry = New DirectoryEntry(strPath)
Dim myEntries As DirectoryEntries = de.Children
' Find Images Folder
For Each entry As DirectoryEntry In myEntries
If entry.Name = "Images" Then
'Add a custom header (here Ie6 Cache Bugfix)
entry.Properties("HttpCustomHeaders").Add("Cache-Control:post-check=900,pre-check=3600")
entry.CommitChanges()
Exit For
End If
Next
End Sub
cscript.exe adsutil.vbs set w3svc/1/ROOT/YOURVIRTUALDIR/Images/HttpCustomHeaders "X-Powred-By: ASP.NET" "Cache-Control: post-check=900,pre-check=3600"'End Try