|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
2 Articles match "2007"
See all articles with
"2007"
|
The Latest from The Black Knight Sings
|
MORE
|
|
WCMexport version 1.0
When you're branding a site using SharePoint 2007 Web Content Management, you really want to spend your time changing Master Pages and Page Layouts. But you often find that you spend a lot of your time editing your Feature.xml and different Elements.xml files especially if you have a lot of different Page Layouts with web parts for different parts of the site. WCMexport is a small utility which can help you if you don't like doing all the editing of the xml-files from scratch.
The Black Knight Sings
- Sunday, November 16, 2008
Turn Default Upload Overwrite Off in WSS 3.0
and MOSS 2007, but sometimes you may want to change this default. By default the Overwrite checkbox in Upload.aspx is checked in WSS 3.0 MOSS junkie has a post on how to change that default. But his solution has the downside of having to modify one of the standard application pages which is unsupported and may be overwritten by a upgrade. So how do we change the default without modifying upload.aspx? Once again the controls in the default masterpage can help us. This time it's the AdditionalPageHead delegate we can use.
The Black Knight Sings
- Thursday, August 21, 2008
|
|
The Best from The Black Knight Sings
|
MORE
|
|
Turn Default Upload Overwrite Off in WSS 3.0
and MOSS 2007, but sometimes you may want to change this default. By default the Overwrite checkbox in Upload.aspx is checked in WSS 3.0 MOSS junkie has a post on how to change that default. But his solution has the downside of having to modify one of the standard application pages which is unsupported and may be overwritten by a upgrade. So how do we change the default without modifying upload.aspx? Once again the controls in the default masterpage can help us. This time it's the AdditionalPageHead delegate we can use.
The Black Knight Sings
- Thursday, August 21, 2008
WCMexport version 1.0
When you're branding a site using SharePoint 2007 Web Content Management, you really want to spend your time changing Master Pages and Page Layouts. But you often find that you spend a lot of your time editing your Feature.xml and different Elements.xml files especially if you have a lot of different Page Layouts with web parts for different parts of the site. WCMexport is a small utility which can help you if you don't like doing all the editing of the xml-files from scratch.
The Black Knight Sings
- Sunday, November 16, 2008
|
144 Articles match "2007"
See all articles with
"2007"
|
The Latest from DevelopMentor
|
MORE
|
|
Purchasing Visual Studio 2010
Microsoft Office 2007 Ultimate, Communicator 2007, Project 2007 Standard, Visio 2007 Professional, SharePoint Designer 2007. Amazon sells various versions of Visual Studio 2010. Here is an overview of versions and this will give you a good indication of prices. Below the prices is a feature comparison also…. Visual Studio Professional. Plain. Upgrade from 2005/2008. with MSDN. Visual Studio Premium. with new MSDN. with MSDN renewal. Visual Studio Utlimate. with new MSDN. with MSDN renewal. Visual Studio 2010 Feature Comparison. Debugging & Diagnostic.
The Blomsma Code
- Tuesday, July 13, 2010
The Financial Crisis
In 2007 home values suddenly declined a bit for the first time ever. This is an explanation of the cause of the financial crisis, though it’s too long at 17 pages. Here’s my dumbed down summary. Around the world there was a huge glut of cash, particularly in Asia. Individuals can put cash in FDIC secured savings account, but no such safe account exists for huge deposits. So where can money markets and hedge funds and Chinese banks put their money and guarantee it’s safe? They put it in the repo market. Everyone is happy. The problem lies in those Aaa-rated bonds.
Handwaving
- Friday, March 5, 2010
Satisfied with 2009 Holiday Spending?
Holiday spending on the Internetz was also up from 2008, but keep in mind that 2008 was down from 2007. I am still waiting for your Christmas gift. While I wait, I’ll share a few numbers I dug up on Christmas spending from Consumerism-mas 2009. Retail in Canada. Despite the media’s incessant wailing about the economy all year long, Canadians spent more during the 2009 holiday season than the 2008 holiday season according to data from the largest debit and credit card processor in Canada. December 22 was the busiest day (up 4.5% over last year). December 24-29 saw a 7.9%
Derek Hatchard blogs on
- Friday, January 8, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Jason’s AJAX Component Library
[Update: This release won't build if you extracted it to a folder with spaces in the path. You might want to get Release 2 instead.]. I’ve been really busy recently working on some extender controls for ASP.NET AJAX. My current employer was kind enough to let me release the extenders I’ve been working on for them as part of an open source project. So here is the first release of Jason’s AJAX Component Library. Try not to confuse this with the Microsoft’s AJAX Control Toolkit. =). I’m assuming you have Visual Studio 2005 and ASP.NET AJAX installed, of course.
Jason Diamond
- Monday, June 4, 2007
-
WF and ASP.NET - A Few Gotchas
ASP.NET as WF host is an important and useful scenario for WF adoption, but there are some interesting details that are worth understanding before you tackle this yourself. The first thing to understand is that WF itself imposes no specific threading model; rather, it must be configured to conform to any specific threading requirements of its host process. This means that WF can be hosted in a single-threaded console or WinForms app, and also can scale up to be hosted inside ASP.NET, with all of its multithreaded goodness (thankfully hidden under the covers from the average web developer).
There Must Be Some Mistake
- Monday, October 1, 2007
-
WPF Data Providers
One of the nifty new features of the WPF platform is the pluggable data providers. It ships with two out of the box: ObjectDataProvider: allows you to execute binding expressions against an object and it's methods. XmlDataProvider: loads an XML data source and makes it available as a binding source. Both of these derive from the abstract class System.Data.DataSourceProvider which implements the binding glue ( INotifyPropertyChanged ) needed for data binding. State, Age, Income. We can get the data loaded into a collection source through the XmlDataProvider. xmlns = " [link] ". Until then.
Mark's Blog of Random Thoughts
- Wednesday, January 17, 2007
-
TransactionScope and DataAdapters
Recently I had to write some code that persisted changes too two DataTable's to a SQL Server database, with both updates inside a single transaction. So since I was using.NET 2.0 I decided to use TransactionScope. using( TransactionScope tx = new TransactionScope())) { firstTableAdapter.Update( firstTable ); secondTableAdapter.Update( secondTable ); tx.Complete(); } I was careful to ensure that both adapters used the same database connection object, however there was still a nasty side effect. To fix the problem we simply have to ensure that the connection is only opened once.
.NET Mutterings
- Friday, January 12, 2007
-
Marshalling native function pointers
Now that the book is written and all urgent tasks I had to defer due to the book are done, I find some time to blog about technical topics. Recently, a customer asked me how to marshal function pointers across managed / unmanaged interop boundaries. If you know a simple API and two attributes and if you are aware of a pitfall specific to marshaling function pointers, the job can be quite easy. To discuss this topic, consider the following simple API: namespace NativeAPI. {. struct CallbackData. {. int i; double d; }; typedef void (*PFNCallback)(CallbackData* p); class SampleClass. {.
Marcus' Blog
- Friday, April 6, 2007
|
|
|