Bilal Haidar Blog
Jan 26 2007
I want to thank Dave for the great C#/VB.NET Convertor tool that his company (Tangible Software Solutions Inc.) owns!
This tool comes in two flavours: 1- Instant VB 2- Instant CSharp
You can convert your code from C# to VB.NET or from VB.NET to C# in both .NET Framework 1.1/2.0.
Here is a screenshot of that wonderful utility, which is very robust and gives really good results!
As you can see, you can convert your code by specifying, the Project Name, a Snippet, a Folder, and ASP.NET Script. So many options, to make converting your code a matter of few seconds only!!
I recommend you visit the website and download those two software:
http://www.tangiblesoftwaresolutions.com/Demo.htm
Thank you Dave for the wonderful tools!
Regards
Tags:
Comments Off
Those of you following my blog must have checked some posts for me about The Dream. If you didn't, check it here.
In this Episode, I am going to announce THE DREAM!!
In March 2007, I will be publishing my first printed article in a very popular magazine!
I will leave the magazine name till later, but at least I am almost there [:D].
Thank you
Jan 24 2007
I kindly invite you to check my latest article on www.aspalliance.com under the title of: Creating a Custom ExpressionBuilder in ASP.NET 2.0 Hope you will enjoy it!
Jan 23 2007
Scott Guthrie just announced the release of the ASP.NET AJAX 1.0 .
Check his post here: ASP.NET AJAX 1.0 Released
Tags: ASP.NET 2.0 - General
A new Event in ADO.NET 2.0 has been addeed to the SqlCommand object called the *StatementCompleted* event. Usually, if you are executing a set of UPDATE statements on your database as a batch using ExecuteNoneQuery() method, you get the number of affected rows in the whole batch action. What if you wanted to know what each UPDATE method has returned from *Rows Affected*?
The answer is this new Event. Check it on MSDN to see how powerful it is! SqlCommand.StatementCompleted Event
Hope this helps, Regards
Tags: Databases & SQL
Jan 21 2007
I have just finished submitting my book review on ASP.NET 2.0 Website Programming Problem - Design - Solution to www.aspallance.com
It is just a wonderful book that I recommend every serious ASP.NET developer to read it!
The book is an accompanying documentation on a Start Kit called The Berr House. To read more about the book check the book's website:
ASP.NET 2.0: Website Programming Problem - Design - Solution
Jan 18 2007
I always find a difficulty in remembering all the server variables and how they can help me, here is a list of all the server variables I ran in a testing application. You will see the server variables with a sample data coming from the testing application:
Hope this helps,
Tags: ASP.NET 1.x, ASP.NET 2.0 - General
I was introduced yesterday to the new namespace in .NET 2.0 about Transactions. Transactions at the business layer (C# domain objects) without the use of COM+ Transactions. There are two kinds Light Weight that depends on the SQL Server 2005 (single connection), once more than one connections are used, the Light Weight Transaction Manager will be promoted to OleTX Transaction Manager which is internally based on COM+.