29/11/2012 by Nitesh

How to Execute a Query Stored in a variable in Stored Procedure

Friends, Today, I was working with SQL Server and found an interesting situation where I wanted to store my query in a variable in stored procedure and after preparing the query based on parameters, execute the query at the last. I came up with an interesting solution for this. Let us consider the below stored…

Continue Reading »

29/11/2012 by Nitesh

Contributed to Galaxy Note-II Art Piece World Record

Dear Friends, I contributed to the Galaxy Note-II Art Piece world record and got the below certificate from Samsung as a participant.

27/11/2012 by Nitesh

How to transform text from one case to another using javascript

Friends, This post will describe converting text from one case to another using javascript. In general programming, we need to convert a text to the following cases – Lower Case Upper Case Title Case We will see the conversion one by one below – To convert a text into lowercase using Javascript function toLowerCase(str) {…

Continue Reading »

02/11/2012 by Nitesh

How to send Email using Gmail Server

I have seen many developers asking this questions and hence thought of writing this brief post. This post describes the code to send an email in C# using Gmail as mail server. SmtpClient smtpServer = new SmtpClient(“smtp.gmail.com”); smtpServer.Port = 587; smtpServer.Host=”smtp.gmail.com”; smtpServer.Credentials = new NetworkCredential(“username@gmail.com”, “PASSWORD”); smtpServer.EnableSsl = true; MailMessage mail = new MailMessage(); mail.From…

Continue Reading »

02/11/2012 by Nitesh

Links to download Windows Phone SDK

In this post, I am sharing the downloadable links of Windows Phone SDK. Windows Phone SDK 8 Offline Installer Windows Phone SDK 7.1.1 Update Offline Installer Windows Phone SDK 7.1 Web Installer Offline Installer

1 3 4 5 6 7