Pedro

Stories kicked by Pedro

HTTP compression in ASP.NET 2.0(madskristensen.dk)

submitted by korayemkorayem(1240) 4 years, 11 months ago

A bit old...but very useful read more...

2 comments |category: |Views: 30

tags: another

Noble.NET(jayflowers.com)

submitted by jflowersjflowers(1860) 4 years, 11 months ago

A proposal to change ALT.NET to Noble.NET. Read the comments too. read more...

add a comment |category: |Views: 2

tags: another

New T-SQL Capabilities in SQL Server 2005 - Part 3 of 3 (setfocus.com)

submitted by SetFocusSetFocus(510) 5 years, 1 month ago

In last month's article, I covered the new APPLY operator, Ranking functions, and the new TRY...CATCH capabilties in T-SQL 2005. This month I'll talk about two of the largest enhancements in the SQL 2005 language - Common Table Expressions (CTEs) and Recursive Queries. Both fo these are part of the SQL-99 standard. CTEs allow developers to more expressively identify a temporary result set (similar to a derived table or temporary view). Recursive Queries allow developers to more easily query hierarchies of data, by permitting developers (in a single SQL statement) to recursively query into a CTE that's also being populated). CTEs and Recursive queries can be a little difficult to initially grasp, so I'm going to show several code examples to demonstrate their value. read more...

add a comment |category: |Views: 27

tags: another

Walking on JavaScript objects trees. Can we treat JSON as XML ?(ajaxline.com)

submitted by luchkovskyluchkovsky(55) 5 years, 1 month ago

Walking on JavaScript objects trees. Can we do it with JSON or JavaScript like we can while we work with XML? Walking on JavaScript objects trees. Can we treat JSON as XML? If you are developer which use JavaScript in your everyday activity and especially if you work with JSON and object oriented JavaScript, this article is definitely the one which worth to look at. It considers general JSON issues and also demonstrates how they could be solved. read more...

add a comment |category: |Views: 8

tags: another

Walking on JavaScript objects trees.(ajaxline.com)

submitted by IvanovskyIvanovsky(15) 5 years, 1 month ago

Walking on JavaScript objects trees. Can we do it with JSON or JavaScript like we can while we work with XML? read more...

add a comment |category: |Views: 1

tags: another

The Power of Anonymous Methods in C#(weblogs.asp.net)

submitted by antnyantny(55) 5 years, 1 month ago

Anonymous methods are a new feature in C# 2.0 that allow you to hook an action directly to an event as opposed to having a separate event handler. For example, when a user clicks a button and you need to pop-up a MessageBox, you could handle it the standard way with a delegate and an event handler, or you could hook the action to perform directly to the Click event using an anonymous method as shown next read more...

add a comment |category: |Views: 34

tags: another

Tool : CLRProfiler for .NET 2.0 released(dotnetwithme.blogspot.com)

submitted by vikasgoyal77vikasgoyal77(550) 5 years, 1 month ago

Tool : CLRProfiler for .NET 2.0 released read more...

add a comment |category: |Views: 2

tags: another

Visual Studio Tip : How to change the default assembly info(dotnetwithme.blogspot.com)

submitted by vikasgoyal77vikasgoyal77(550) 5 years, 1 month ago

Visual Studio Tip : How to change the default assembly info read more...

add a comment |category: |Views: 37

tags: another

Did it with .NET - Adventures with the Garbage Collector and the JIT O(diditwith.net)

submitted by prasphyprasphy(780) 5 years, 1 month ago

Dan Shechter's code sample that illustrates a certain peculiarity of the .NET garbage collector. read more...

add a comment |category: |Views: 3

tags: another

C# Collections(blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4212) 5 years, 1 month ago

The thirty-sixth part of the C# Fundamentals tutorial introduces the use of collections in C#. A collection is similar to an array in that it contains a group of objects. However, the use of varying types of collection provide for more functionality. read more...

2 comments |category: |Views: 17

tags: another

Is .NET Taking over the World?(neosmart.net)

submitted by ComputerGuruComputerGuru(540) 5 years, 1 month ago

Microsoft's .NET Framework is a powerful bit of machinery, with the advantage of knowing where the competition went wrong in the decades past. Can .NET overcome the obstacles and become the ultimate (and only??) development framework one will ever need, anywhere, anytime? read more...

add a comment |category: |Views: 1

tags: another

A Web 2.0 Service That Won't Let You Forget The Milk(blogs.ittoolbox.com)

submitted by alexexmachinaalexexmachina(1020) 5 years, 1 month ago

I'm always looking for technology that will simplify and improve my life. The great thing about most Web 2.0 applications that I've found is that they allow me to centralize information or communication into one source that's 'location independent'. read more...

add a comment |category: |Views: 0

tags: another

Web Services-AJAX Intellisense-Debugging in Visual Studio Orcas Beta1(aspnetpodcast.com)

submitted by wallymwallym(2085) 5 years, 1 month ago

In this video, I'll demo Web Services and AJAX support for Intellisense and Debugging in Visual Studio .NET Orcas Beta1. read more...

add a comment |category: |Views: 7

tags: another

My Developer's Toolbox - Programmer's Notepad 2(blogs.ittoolbox.com)

submitted by alexexmachinaalexexmachina(1020) 5 years, 1 month ago

A quick write up about a open source text editor that provide's cool features like syntax highlight, collapsible code blocks and an extensible design. read more...

add a comment |category: |Views: 2

tags: another

Getting the most out of .NET data binding(jonkruger.com)

submitted by krugs525krugs525(130) 5 years, 1 month ago

Data binding is a great way to work with data and UI controls, but there’s a lot more to it than just setting the DataSource property of a grid. The .NET framework provides interfaces and components that will let the framework do most of the work for you — as long as you set it up right. read more...

add a comment |category: |Views: 2

tags: another

Slightly more dynamic ORDER BY in SQL Server 2005(john-sheehan.com)

submitted by rimsystemsrimsystems(6119) 5 years, 1 month ago

When CASE isn't enough and dynamic SQL isn't an option, here's a method for using dynamic ORDER BYs in SQL 2005. Supports multiple columns and sort directions. read more...

add a comment |category: |Views: 188

tags: another