Monthly Archives: March 2007

C# client, VB.NET web services and Oracle 10g database

C# client, VB.NET web services and Oracle 10g database   After install Oracle 10g you will probably find a folder like C:oracleproduct10.2.0db_1odp.net in your computer if your Oracle home folder is in C drive in a Windows machine. Under the … Continue reading

Posted in .Net | 1 Comment

MVP trip

  It is nice trip to Seattle, Washington to meet up with the MVP in the rest of the world. Thanks to Microsoft

Posted in Community | Leave a comment

Local Type Inference, Anonymous Types, and var – sample

Local Type Inference, Anonymous Types, and var   There is an article you can find in http://msdn2.microsoft.com/en-us/vcsharp/default.aspx written by Bill Wagner. I do not think you can find any sample to download in the article link. I somehow have created … Continue reading

Posted in .Net | Leave a comment

Dynamic Server Side Included in ASP.NET

Dynamic Server Side Included in ASP.NET   You can find an article Server-Side Include Directive Syntax (http://msdn2.microsoft.com/en-us/library/3207d0e3(VS.80).aspx) in MSDN web site.   <html>   <body>     <!– #include virtual=”/include/header.inc” –>       .       .       . </html>   I have … Continue reading

Posted in .Net | Leave a comment

Passing DateTime parameter to Stored Procedure

Passing DateTime parameter to Stored Procedure   When passing DateTime data type to Stored Procedure it is a bit tricky here. Pay attention to the code below.   OleDbCommand ocmd  = new OleDbCommand("[Sales By Year]", ocnnNorthwind); // By default the … Continue reading

Posted in .Net | Leave a comment