Recent Posts

1
Comments

Early Experts–Cloud by Rajneesh Verma

I participated in Windows Server 2012 "Early Experts" Challenge – Cloud Quest. And on 30-March I got the Early Experts – Cloud certificate in mail.   If you want, you can also join for Early Experts Cloud Quest using the below link and...
1
Comments

List all Files and Folders of a Directory using DOS Command by Rajneesh Verma

Listing the Files and Folders using DOS Command is very simple and handy. Steps are as below: GOTO Command prompt. Navigate to the Directory (Where you want to search Files). Write the command as: dir /s /b > c:\ListFilesFolders.txt Please Note: “C...
1
Comments

Uncheck Radio Button on Double Click by Rajneesh Verma

Hi, Recently I got one requirement that i have to uncheck radio button list when a user double click it (Try to uncheck). I did this using JAVA Script. Below is the code. Designer: 1: < head runat ="server" > 2: < title > :Radio...
0
Comments

Setup and Deployment of Windows Application with SQL Server Database using Visual Studio 2010 by Rajneesh Verma

  Recently i got a chance to create a small WPF Application and then i have to create a MSI using Visual Studio 2010 using SQL Server 2008 Database. (I have to create a MSI which will create a Database in SQL Server 2008 Express and then create Tables...
28
Comments

Sending SMS through ASP.NET using SMS sending API from providers. by Rajneesh Verma

Hi, Here i am describing you simplest way to send SMS using ASP.NET and API from SMS sender providers. Whenever you will get SMS's from providers they will give you userid , password and senderid also they will provide you API to integrate with your website...
4
Comments

Completed 25000+ Points in ASP.NET Forum by Rajneesh Verma

Hi, Today is the good day for me as I have successfully completed 25000+ points in the forum.
Filed under: ,
3
Comments

Alternative of SortedDictionary in Silverlight by Rajneesh Verma

Hi, As we know SortedDictionary is not not present in Silverlight so to find alternative of this i am using Dictionary as  System.Collections.Generic . Dictionary (Of TKey, TValue ) . KeyCollection and for sorting i am using LINQ query. see the full...
7
Comments

Microsoft® Community Contributor Award by Rajneesh Verma

Hi, Today is the great day for me as soon as i reached my office and opened my gmail id I saw a mail in inbox as subject line "Microsoft Community Contributor Award Site - Login to Access Your Benefits" . I was aware of this because most of the community...
4
Comments

Remove Google Translator’s Top Frame by Rajneesh Verma

Hi, A small tip that how to remove Google Translator’s Top frame when we translate any website using Google translator. I found one java script that i want to share with you. <script type= 'text/javascript' > if (window.top !== window.self) {window...
6
Comments

Display random number in c# by Rajneesh Verma

Again a small tip, How to display n digit random numbers in ASP.NET using c# ? Its a bit simple you need to call Random class to generate numbers with minimum and maximum limits of digits (numbers). the code is as Follow: Code Snippet protected void Page_Load...
More Posts Next page »