By Philip Beadle on Tuesday, March 27, 2007 11:32 AM
Found this great calendar app for One Note by Josh Einstein. http://blogs.msdn.com/descapa/archive/2007/03/26/josh-einstein-s-onenote-calendar.aspx He has used the same UI as Vista has for browsing images so it is really easy to use. I love it, its a great complement to the Outlook One Note integration, now I can browse my One Notes work by date and easily find notes I took at meetings etc.
|
By Philip Beadle on Friday, March 23, 2007 11:32 AM
I needed to transform some XML with a XSL style sheet without writing to Disk and this is how I did it. The end result is an XML Document with the transformed result.Read More » |
By Philip Beadle on Wednesday, March 14, 2007 3:19 PM
In January when I missed out on my MVP award I decided to make sure I got it back ASAP. Now in mid march I am now 5th on the list on page 5 and have increased my contributions by nearly 1000 so far. Ill be on page 4 real soon.Read More » |
By Philip Beadle on Wednesday, February 14, 2007 10:34 AM
This morning we updated the Online Help Content on the DotNetNuke site. Most of the new modules ahev been documented and there is more content related to the Admin and Host sections.
|
By Philip Beadle on Monday, February 12, 2007 2:20 PM
DotNetNuke Online Help System 03.00.01 has been officialy released on www.dotnetnuke.com.
|
By Philip Beadle on Friday, February 09, 2007 2:32 PM
I needed to find out which methods were calling my method so I came up with this snippet that gives you a path from your method to the start of the stack trace. The DataProvider bit is DotNetNuke specific code, to muse this outside of DNN log it to the event log or something similar. Dim st As New Diagnostics.StackTrace() Dim methodPath As String = String.Empty Dim i As Integer = 0 For Each fr As Diagnostics.StackFrame In st.GetFrames() methodPath += ">> " & fr.GetMethod.Name i += 1 Next DataProvider.Instance().ExecuteSQL("Insert Into Trace (RawURL, Stack) VALUES ('Frames = " & i & "','" & methodPath & "')")
|
By Philip Beadle on Wednesday, February 07, 2007 10:23 AM
Ever had one of those Web forms where you enter your password only to hit some button later on and it wipes your password between post backs. You can reset the value using the following snippet. txtPassword.Attributes.Add("value", _password)
|
By Philip Beadle on Friday, February 02, 2007 9:49 AM
Woohoo. We have now finished the DotNetNuke for Dummies book and it scheduled for release on 10th April 2007.
|
By Philip Beadle on Thursday, February 01, 2007 5:18 PM
I jsut upgraded my site to DNN 4.4.1 with no issues at all. Im really looking forward to some of the features we have lined up for this year. Check out Shaun's post on the new developer licensing system to make it simple for developers to license their products and have their customers stick to the license. I also had to copy here the first paragraph of the DNN Newsletter this month. "DotNetNuke® Gets Supercharged; Hosts Note Immediate Performance Increases
From the Web Host Industry Review: "...DotNetNuke [Corporation] announced Monday it has released DotNetNuke version 4.4... DotNetNuke 4.4 is the result of six months of focused performance tuning where the application was repeatedly load-tested, analyzed and re-factored to produce a highly optimized and efficient core engine. Preliminary results indicate that the application is twice as responsive and consumes half the memory of previous versions." Download DotNetNuke 4.4.1 Official Press Release " Cool hey?
|
By Philip Beadle on Tuesday, January 23, 2007 5:23 PM
The DotnetNuke for Dummies that Lorraine is writing is well on the way to completion. I have been helping out with the author reviews and we are over half way there now. All the chapters will be submitted by 1st Feb and hopefully it will be off to the printing from there . Can't wait.
|