Tag Archives: c#

Facebook Uses HipHop To Transform PHP to C++

On the Facebook Developers site, Haiping Zhao writes about how Facebook uses HipHop to transform PHP code to C++ and compiles them using g++. In his article titled, HipHop for PHP: Move Fast, he mentions: HipHop for PHP isn’t technically … Continue reading

Posted in Applications | Tagged , , | Leave a comment

Display line numbers in Visual C# 2008 Express

To display line numbers in code On the Tools menu selecti, Options. In the Text Editor folder, choose the General options in the All Languages subfolder to set this option globally Under Display, select Line numbers. If you do not … Continue reading

Posted in Programming | Tagged , , , , | Leave a comment

When Validating Positive Numbers Use Only A RangeValidator

When requiring the user to enter only positive numbers (integer, double, currency) within a specified limit, you do not need to have both a RegularExpressionValidator to check for positive values and a RangeValidator to provide a limit. You can just … Continue reading

Posted in Programming | Tagged , , | Leave a comment