|
|
reteep
reteep
 |
|
Stories submitted by friends of reteep
|
|
published 1 day, 18 hours ago, submitted by
rstrahl
2 days, 2 hours ago
west-wind.com — I've posted Part 2 of my jQuery with ASP.NET article series. Part 2 deals almost entirely with making AJAX callbacks to ASP.NET using several different mechanisms to retrieve data from the server for client side consumption. Covered are external content retrieval, same page callbacks, WCF/ASMX and a pluggable custom callback implementation that can be used with any application. Also covered is client side templating for managing HTML in one place. read more...
add a comment
|
category: jQuery | Views: 145
|
|
tags:
jQuery, ASP.NET, AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
rstrahl
8 days, 15 hours ago
west-wind.com — I've been getting a lot of questions in response to my WCF REST session in regards of whether I'd recommend switching to WCF from ASMX services for AJAX functionality recently. WCF provides a host of new REST features, but when it comes to AJAX functionality and especially ASP.NET AJAX compatible functionality there's really nothing compelling there to require changes. In this post I look at what WCF provides for AJAX and some of the things you might watch out for. read more...
add a comment
|
category: AJAX | Views: 8
|
|
tags:
AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 9 days, 4 hours ago, submitted by
gavinjoyce
15 days, 15 hours ago
blog.magenic.com — When people talk about lack of adoption of "XP" (aka Extreme Programming) practices, one of the chief problems people have with it is the idea of "Pair Programming" read more...
1 comment
|
category: Other | Views: 703
|
|
| tag it
Everyones tags: | Your tags: | |
No tags
|
|
|
|
|
published 12 days, 14 hours ago, submitted by
rstrahl
18 days, 4 hours ago
west-wind.com — I've published my session slides and samples from the Fall 2008 ASP.NET Connections conference. The sessions include: jQuery and ASP.NET, WCF REST and JSON with ASP.NET and Dealing with Long Running Requests in ASP.NET. read more...
add a comment
|
category: ASP.NET | Views: 225
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 24 days, 21 hours ago, submitted by
rstrahl
25 days, 13 hours ago
west-wind.com — With Microsoft's recent releases of the jQuery Intellisense file plus the hotfix released this week using jQuery in Visual Studio has become a lot easier and more convenient. Here is a little more detail on what you need and how it works. read more...
1 comment
|
category: jQuery | Views: 345
|
|
tags:
jQuery, VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
rstrahl
28 days, 16 hours ago
west-wind.com — Had to do a conversion of a stock ASP.NET project to Web Application projects after not having done so in quite some time and it looks that this process still is not any easier than it was when WAP was a separately installed project type. Here are steps to move a project from stock to WAP with a few hopefully helpful hints. read more...
add a comment
|
category: ASP.NET | Views: 4
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
gavinjoyce
1 month, 4 days ago
creators.xna.com — XNA Game Studio 3.0 expands on all the offerings of earlier iterations to include additional functionality to appeal to game developers of every level and enable them to create games to distribute through Xbox LIVE Community Games on the Xbox 360 as part of the New Xbox Experience. read more...
1 comment
|
category: XNA | Views: 12
|
|
tags:
Xbox360, XNA | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
gavinjoyce
1 month, 6 days ago
martinfowler.com — "Oslo is a project at Microsoft, of which various things have been heard but with little details until this week's PDC conference. What we have known is that it has something to do with ModelDrivenSoftwareDevelopment and DomainSpecificLanguages." read more...
add a comment
|
category: Other | Views: 10
|
|
tags:
Oslo, MartinFowler | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
rstrahl
1 month, 8 days ago
west-wind.com — It's common for me to create DOM elements that pop up ontop of existing content by making them absolutely positioned. Here's a quick plug-in that makes an element absolute consistently. read more...
add a comment
|
category: AJAX | Views: 12
|
|
tags:
jQuery, AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 month, 10 days ago, submitted by
rstrahl
1 month, 11 days ago
west-wind.com — jQuery makes it easy to search content of matched elements by using the :content filter which allows for some pretty cool search effects you can implement with a couple of lines of code. Unfortunately :contains is case sensitive though, but never fear jQuery allows creation of custom filters that allow you to provide a custom case insensitive version. read more...
1 comment
|
category: AJAX | Views: 198
|
|
tags:
jQuery, AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
rstrahl
1 month, 15 days ago
west-wind.com — Ran into an odd problem with Literal controls in the head tag of the document causing HTML to get corrupted today. It appears that literal controls - and only literal controls - are causing some odd designer manglage that can result in broken HTML. read more...
add a comment
|
category: ASP.NET | Views: 4
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 month, 20 days ago, submitted by
rstrahl
1 month, 21 days ago
west-wind.com — Client templating in Javascript can be a great tool to reduce the amount of code you have to write to create markup content on the client. There are a number of different ways that templating can be accomplished from a purely manual approach to a full templating engine. In this entry I'll look at several different approaches. read more...
add a comment
|
category: AJAX | Views: 291
|
|
tags:
jQuery, ReadIt, template, AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
rstrahl
2 months, 2 days ago
west-wind.com — One thing that bugs me about jQuery selectors is that empty or null selectors return the HTML document object, rather than an empty jQuery object. This has bitten me on a number of occasions and requires some read more...
add a comment
|
category: AJAX | Views: 6
|
|
tags:
AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 2 months, 5 days ago, submitted by
rstrahl
2 months, 6 days ago
west-wind.com — I've posted Part 1 in a 2 part series on jQuery today. Part 1 covers the client side features of jQuery from the basics all the way through creating simple plugins and extending jQuery. This is a long article that discusses a host of the really useful features that jQuery brings to the table for client side Javascript development. Part 2 will then follow up with server side ASP.NET integration. read more...
add a comment
|
category: AJAX | Views: 297
|
|
tags:
jQuery, AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
rstrahl
2 months, 23 days ago
west-wind.com — I've revisited a jQuery plug-in that can be used to monitor changes in CSS properties and be notified when a specific property changes providing an Observer style callback. This can be a handy feature when building behavior components that attach functionality to other elements and need to keep these behaviors in sync with the original object. This update utilizes a more efficient approach and allows monitoring many properties at once. read more...
add a comment
|
category: AJAX | Views: 2
|
|
tags:
AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|