BlackTigerX

Stories kicked by BlackTigerX

Small but useful refactoring for working with nullable types(ebersys.blogspot.com)

submitted by BlackTigerXBlackTigerX(460) 4 years, 7 months ago

nullable types open a nice posibility, however writing the code to verify if there is a value, then using the value is repetitive and long, here's a solution read more...

add a comment |category: |Views: 0

tags: another

Differences in .NET 2.0 and .NET 2.0SP1(hanselman.com)

submitted by jamesewelchjamesewelch(2275) 4 years, 7 months ago

List of changes for .NET 2.0 SP1. The .NET 2.0 SP 1 will be released at the same time as .NET 3.5. Also includes FxCop rule to get a warning if you are using something that has changed. If you have 2.0 SP1 with these new 2.0 methods and deploy to an older system that has only .NET 2.0 RTM (not Service Pack'ed), then you might get a MethodMissingException because that older system might not have the new method or property. read more...

add a comment |category: |Views: 92

tags: another

Cross apply in SQL Server 2000(weblogs.sqlteam.com)

submitted by PesoPeso(20) 4 years, 7 months ago

It is possible to emulate the SQL Server 2005 CROSS APPLY operator in SQL Server 2000. read more...

add a comment |category: |Views: 340

tags: another

ASP.NET - Server.Transfer v/s Server.Execute(techahead.wordpress.com)

submitted by prashantvictoryprashantvictory(605) 4 years, 7 months ago

Difference between Server.Transfer and Server.Execute. read more...

3 comments |category: |Views: 87

tags: another

ASP.NET MVC Framework - ScottGu's Blog (weblogs.asp.net)

submitted by ashmindashmind(775) 4 years, 7 months ago

ASP.NET MVC Framework described by ScottGu. read more...

7 comments |category: |Views: 85

tags: another

SharpCacheSessionManager(aspadvice.com)

submitted by gavinjoycegavinjoyce(25.7k) 4 years, 7 months ago

The SharpCacheSessionManager is a HttpHandler that allows to display the entries stored in the Cache, Session and Application object. You can view the data stored inside the objects and you can also remove the objects from the corresponding storage. read more...

1 comment |category: |Views: 11

tags: another

PLINQ = Parallel FX = PFX = The new Concurrent World(spellcoder.com)

submitted by bashmohandesbashmohandes(3000) 4 years, 7 months ago

Microsoft is developing a number of technologies to simplify the expression of parallelism in code. An example of this work is Parallel Extensions for the .NET Framework (PFX), a managed programming model for data parallelism, task parallelism, scheduling, and coordination on parallel hardware. read more...

1 comment |category: |Views: 78

tags: another

Writing custom LINQ provider(weblogs.asp.net)

submitted by mehfuzhmehfuzh(1906) 4 years, 7 months ago

In this post, I will show how to create a sample LINQ provider.Creating LINQ provider can be far more complex, but here I will demonstrate the very basic one to start... read more...

add a comment |category: |Views: 372

tags: another

What Subversion 1.5 has in store for you?(viratics.com)

submitted by scmadminscmadmin(210) 4 years, 7 months ago

It’s been long time and we keep hearing a lot about Subversion 1.5. I am a bit curious and tempted to see what actually it has to offer us. read more...

add a comment |category: |Views: 4

tags: another

CSS Control Adapters Cause Double PostBack in IE(stevenharman.net)

submitted by usshermussherm(5285) 5 years, 1 month ago

Recently I've been trying to use CSS Adapters along with the Membership/Roles/Provider controls and I've come across an issue where the Adapters cause the page to PostBack twice when using IE. WTF? read more...

add a comment |category: |Views: 10

tags: another

Code reuse, next level(ebersys.blogspot.com)

submitted by BlackTigerXBlackTigerX(460) 5 years, 6 months ago

A common mistake that developers have been making over the years is to place conditional statements that always evaluate to the same result (until a property changes) inside a loop, here's an alternative to solve this problem read more...

add a comment |category: |Views: 3

tags: another

How to: Instantiate a class with a private constructor(ebersys.blogspot.com)

submitted by BlackTigerXBlackTigerX(460) 5 years, 6 months ago

Following up the post about "how to instantiate (another's class) private methods", here we see how easy is to instantiate a class, regardless of the visibility of it's constructors read more...

add a comment |category: |Views: 6

tags: another

A better string control in ASP.NET(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 7 months ago

The other day, I found the LiteralControl while browsing through the MSDN docs and that my friends are a real treat. It lives in the System.Web.UI namespace and it adds great value. read more...

add a comment |category: |Views: 1

tags: another

Escape characters to use reserved words as variable names in .NET (ebersys.blogspot.com)

submitted by BlackTigerXBlackTigerX(460) 5 years, 7 months ago

one of the biggest advantages of .NET is that it is language agnostic, but what happens when you are using code written in another language, and they used a variable name that is a reserved word in your language? read more...

add a comment |category: |Views: 22

tags: another

How to: Execute (another's class) private methods(ebersys.blogspot.com)

submitted by BlackTigerXBlackTigerX(460) 5 years, 7 months ago

Do you need to get access to a method that has been marked as private? here's how you can read more...

4 comments |category: |Views: 23

tags: another

quest for a better CAPTCHA(ebersys.blogspot.com)

submitted by BlackTigerXBlackTigerX(460) 5 years, 7 months ago

Current CAPTCHA implementations suffer mainly from the problem of being unreadable, here's an idea read more...

add a comment |category: |Views: 10

tags: another