justinbezanson

Stories kicked by justinbezanson

Changing Brush Brightness in WPF/Silverlight (dev102.com)

submitted by talisharon10talisharon10(800) 2 years, 10 months ago

Changing Brush Brightness in WPF/Silverlight from code in runtime read more...

2 comments |category: |Views: 220

tags: another

Creating A RESTful API With WCF (dev102.com)

submitted by razamitrazamit(4566) 2 years, 10 months ago

Representational state transfer (REST) is a style of software architecture for distributed hypermedia systems such as the World Wide Web. As such, it is not just a method for building "web services." The terms "representational state transfer" and "REST" were introduced in 2000 in the doctoral dissertation of Roy Fielding,[1] one of the principal authors of the Hypertext Transfer Protocol (HTTP) specification. read more...

add a comment |category: |Views: 372

tags: another

Formatting Your WPF Data – String.Format Is In the House! (dev102.com)

submitted by razamitrazamit(4566) 2 years, 11 months ago

How to format your Binded Data read more...

add a comment |category: |Views: 312

tags: another

Creating Gapped and Bulleted Shapes in WPF/Silverlight (dev102.com)

submitted by razamitrazamit(4566) 3 years ago

How to create a shape with bullets on the joints of it’s segments read more...

add a comment |category: |Views: 216

tags: another

Parameter count mismatch Error (dev102.com)

submitted by shaharyrshaharyr(4325) 3 years ago

Yesterday, I spent a whole day chasing a very weird and strange error - I was getting an exception at the main method. The error description was: “Parameters count mismatch“. read more...

add a comment |category: |Views: 358

tags: another

How To: Clean Up ASP.NET JavaScript Tags(blog.reamped.net)

submitted by kayoskayos(890) 3 years ago

In April of '08, I wrote a post about cleaning up the ASP.NET head tag using control adapters. I've got some great feedback from it, and I'm glad that I'm not the only one that is horrified when looking at the source of an ASP.NET rendered web page. From the comments of that article I was recently asked how to clean up JavaScript tags. read more...

add a comment |category: |Views: 21

tags: another

GridView Plugin For JQuery(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years ago

Starting out we are going to keep this pretty simple and as it progresses we’ll add more features. For now we are going to start with a hand coded HTML table and CSS. In a later post we’ll look at populating the grid from a data source. In this post today we’ll apply the CSS to the table but will expand this to a skinning system later on. We’ll also be applying the row selection feature today. read more...

add a comment |category: |Views: 353

tags: another

Adding Default Assemblies, Namespaces and Control Prefixes in Config(west-wind.com)

submitted by johnsheehanjohnsheehan(4785) 3 years ago

The fact that you can assign namespace and assemblies in your web.config file is one of the most underused features of ASP.NET read more...

add a comment |category: |Views: 190

tags: another

Building a simple voicemail system with Twilio and ASP.NET MVC, Part 1(john-sheehan.com)

submitted by johnsheehanjohnsheehan(4785) 3 years ago

How to build a simple voicemail system using Twilio's TwiML and ASP.NET MVC read more...

add a comment |category: |Views: 61

tags: another

4 Grea Tips for Custom WPF Controls Developers (dev102.com)

submitted by razamitrazamit(4566) 3 years ago

4 great tips for WPF Custom control designers read more...

add a comment |category: |Views: 296

tags: another

Beginning JQuery - Cool Menu with Master Page(codersbarn.com)

submitted by BognitBognit(2125) 3 years ago

I came across a really slick menu on the Queness website and have adapted it to work with a regular ASP.NET master page. A download link to a working Web Application Project for this is provided below. read more...

add a comment |category: |Views: 368

tags: another

The HttpWebRequest and Using Client Certificates(blog.reamped.net)

submitted by kayoskayos(890) 3 years ago

So you may have found yourself in a similar situation, needing to make a TCP/IP request to a 3rd party API possibly using SSL. Well, that is a quite simple task. It can however, be complicated if this 3rd party requires the use of certificates for communication to its API server. read more...

add a comment |category: |Views: 117

tags: another

Using of JSON Result in Asp.net MVC 1.0(weblogs.asp.net)

submitted by mehfuzhmehfuzh(1906) 3 years ago

In a post few month back , i showed how can i simulate a callback using JQuery and ASP.NET with my experimental FlickrXplorer project. More detail on this can be found at the following URL http://weblogs.asp.net/mehfuzh/archive/2008/10/13/using-jquery-to-do-ajax-form-posts-in-asp-net-mvc.aspx Now, what i have done here is basically, i did an AJAX call to the controller and rendered the view result in a div. One thing about this way is that i am able to make the view strongly typed as i first rendered view using standard way with all the strongly type ViewData.Model. It is nice for rendering views with small amount of html in it (Like , tag lists), but slow for big outputs. The best practice for all these is to use the JSONResult. Here, i will show a small example of how i render the comment list in FlickrXplorer using JSON result and JQuery $.Post in conjunction to make the AJAX request. read more...

add a comment |category: |Views: 170

tags: another

How to Create A JQuery Plugin (dev102.com)

submitted by talisharon10talisharon10(800) 3 years ago

A small tutorial about creating JQuery Plugins read more...

add a comment |category: |Views: 195

tags: another

A DelegateQueue Class(codeproject.com)

submitted by razamitrazamit(4566) 3 years, 1 month ago

Last year, I wrote a toolkit for creating state machines. One of my goals for the toolkit was to provide the option of having each state machine executing in its own thread; I wanted state machines to be active objects. To realize this goal, I needed an event queue. State machines would use event queues to enqueue events sent to them and later dequeue th read more...

add a comment |category: |Views: 10

tags: another

LINQ to Objects: Debugging(community.bartdesmet.net)

submitted by johnsheehanjohnsheehan(4785) 3 years, 1 month ago

Declarative language constructs like query comprehension syntax often worries imperatively trained developers. I hear this quite a bit, and the excuse of “It Just Works” is often not satisfactory for most of them :-). Combine this with interesting behavioral differences like lazy evaluation and lots of developers get lost in paradise. read more...

add a comment |category: |Views: 23

tags: another