Sign In
Brett Robinson's Blog
Brett Robinson's Technical blog at Microsoft
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NET 3.5
add-in
AJAX
Ajax Library
ASP.NET
Atlas
bookmarking favorites msdn
cache
caching
CE
CE 6.0 R3
Compact
javascript
JSON
Linq
msbuild
Silverlight
Threading
transformation
Visual Studio 2008
Web Services
Windows Embedded
WPF/E
XAML
xml
Archive
Archives
July 2010
(2)
September 2009
(1)
April 2009
(1)
May 2008
(2)
February 2008
(2)
November 2007
(1)
August 2007
(2)
May 2007
(3)
April 2007
(2)
March 2007
(1)
January 2007
(1)
November 2006
(1)
October 2006
(2)
August 2006
(1)
MSDN Blogs
>
Brett Robinson's Blog
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Brett Robinson's Blog
Basic application with Silverlight for Windows Embedded 6.0 R3
Posted
over 2 years ago
by
Brett Robinson
0
Comments
I installed CE 6.0 R3 on my laptop when it was initially released and had created an application that uses the new SWE for 6.0 R3 API. I have seen a few questions about creating applications, so I figured I would post a small application that I created...
Brett Robinson's Blog
Silverlight for Windows Embedded Team Blog is live
Posted
over 2 years ago
by
Brett Robinson
1
Comments
We have just released Windows Compact 7 CTP which includes the latest release of Silverlight for Windows Embedded. Because of this, we have decided to also create a new blog that will focus on Silverlight for Windows Embedded topics, tips and tricks and...
Brett Robinson's Blog
Windows Embedded CE6 R3 released including Silverlight for Windows Embedded
Posted
over 3 years ago
by
Brett Robinson
4
Comments
The project I've been working on since my last blog posts has finally been released! There is some fantastic documentation out on MSDN that can get you familiar with the new Silverlight for Windows Embedded API and how to create applications: Silverlight...
Brett Robinson's Blog
Sharepoint : page level permissions
Posted
over 3 years ago
by
Brett Robinson
1
Comments
Thought I would share out this quick tip on how to define page level permissions on a sharepoint wiki site. If you go to the Pages view where you see all the pages, you can click on the drop down and click "Manage Permissions". Then you can add/remove...
Brett Robinson's Blog
Microsoft Social Bookmarking
Posted
over 4 years ago
by
Brett Robinson
1
Comments
The team I used to work on (and my last contributions there) just launched today. It is Microsoft's social bookmarking application. Check it out: http://social.msdn.microsoft.com/bookmarks/
Brett Robinson's Blog
Goodbye managed, hello again native
Posted
over 4 years ago
by
Brett Robinson
0
Comments
Well, I've moved teams to the Windows Embedded team, so the content of my blog will most likely change. Stay tuned!
Brett Robinson's Blog
Override javascript method in Microsoft Ajax Library
Posted
over 4 years ago
by
Brett Robinson
5
Comments
If you would like to override a method in javascript that uses the Microsoft Ajax Library (such as the control toolkit), you can do the following (with the control toolkit as the base which we are overriding): Type.registerNamespace('AjaxControlToolkit...
Brett Robinson's Blog
New release of MSDN/TechNet Search, Profile and Forums
Posted
over 4 years ago
by
Brett Robinson
3
Comments
The team I'm working on just released our latest version of MSDN/TechNet Search, Profile and Forums. For Search this is the latest release and includes the following new features ( http://search.msdn.microsoft.com/ ): Auto-complete hit highlighting...
Brett Robinson's Blog
Fill server cache with a large data object and have the browser be responsive by using threads
Posted
over 5 years ago
by
Brett Robinson
0
Comments
Recently I was working on a problem, and after testing the solution I thought it would make a good blog post. Here is what I was trying to solve: Fill the cache with a large set of data (approx. 1M items). Have the original request to the website...
Brett Robinson's Blog
Casting with Linq
Posted
over 5 years ago
by
Brett Robinson
0
Comments
I've been working with Linq lately and thought I would post 2 examples on casting with Linq. Most of the ways that you get data back from linq is in the IEnumerable<> type. So, here's two ways to cast to an object that you can use: Linq to SQL...
Brett Robinson's Blog
Model View Presenter - with base functionality
Posted
over 5 years ago
by
Brett Robinson
9
Comments
Lately I've been doing a lot of research and development around patterns and unit testing. One pattern in particular, Model View Presenter (MVP), I found to be a very good pattern for doing web development. The only thing, is that if you want to learn...
Brett Robinson's Blog
Be a Silverlight DJ - with my Silverlight Alpha 1.1 sample
Posted
over 5 years ago
by
Brett Robinson
0
Comments
I wanted to get my hands dirty with Silverlight Alpha 1.1 and so I decided to make a DJ table with two turntables where you can match two beats in different songs. You can click the button on the bottom right of each turntable to get the music started...
Brett Robinson's Blog
Quick tip for deploying ASP.NET Ajax to a web farm
Posted
over 5 years ago
by
Brett Robinson
0
Comments
If you are having issues with your ASP.NET Ajax application after you deployed it in a web farm and you notice that your partial page refreshes are not working, or you have javascript null reference errors, the problem lies in a config setting. By default...
Brett Robinson's Blog
Sandcastle Target File (using March CTP)
Posted
over 5 years ago
by
Brett Robinson
1
Comments
I've been working on building MSDN style documents for my assemblies and wanted to automate this into my build script. If you follow the example that comes with the Sandcastle download, it has a .bat file that executes commands for all transformations...
Brett Robinson's Blog
MSDN and TechNet Search Updated
Posted
over 5 years ago
by
Brett Robinson
0
Comments
The team I am working on just finished a re-write of MSDN and TechNet search. The MSDN and TechNet search pages now allow users to get to their answers faster than ever! Some key enhancements to the search are: Refinements and prescoping of search...
Brett Robinson's Blog
Componentizing Silverlight - what I consider best practices
Posted
over 5 years ago
by
Brett Robinson
2
Comments
I was looking at a post on Mike Harsh's blog about a utility that turns XAML into javascript and I didn't entirely agree with what this utility accomplished. A while back I posted an entry about hooking in web services, Silverlight (WPF/E) and ASP.NET...
Brett Robinson's Blog
Get at the ASP.NET Ajax control name with the BehaviorID property
Posted
over 5 years ago
by
Brett Robinson
5
Comments
If you have ever worked with ASP.NET and binding data to a repeater control or placing content inside master pages, you're probably familiar with how ASP.NET renames the control to make it unique. This makes web developers have many headaches as they...
Brett Robinson's Blog
WPF/E, ASP.NET AJAX and Web Services - hooking it all together
Posted
over 5 years ago
by
Brett Robinson
2
Comments
Recently I've been working with WPF/E and extending some code that I have to make it more visually enhanced. To display the proper data on the page I wanted to do the following: call a web service asynchronously, have it return to me an arrary of a complex...
Brett Robinson's Blog
Generate class from xsd.exe Visual Studio Add-In
Posted
over 6 years ago
by
Brett Robinson
6
Comments
I was using an XML file to generate a cs class for a project I was working on and everytime I changed the xml file I had to go through the vs command prompt and generate a new cs file and import it into my project. What a pain! So, I wrote a Visual Studio...
Brett Robinson's Blog
Finally an XML Editor and transformation tool
Posted
over 6 years ago
by
Brett Robinson
0
Comments
I saw today that Microsoft released an XML editor (even though it looks like it was released on 9/1). I'm glad there's finally a tool out there that allows you to see xml in this format and apply transformations. I'm sure that a lot of developers have...
Brett Robinson's Blog
Using MSBuild to write a build tool
Posted
over 6 years ago
by
Brett Robinson
1
Comments
While re-writing the team's build tool I have come across some strengths and weaknesses of using msbuild. Our sample solution to build contains basically one project of every type that you can create in Visual Studio 2005. There are many goals on writing...
Brett Robinson's Blog
Welcome to my Microsoft Blog
Posted
over 6 years ago
by
Brett Robinson
0
Comments
Welcome!
Page 1 of 1 (22 items)