Recent Posts

10
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...
4
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...
7
Comments

Read only Textbox for calendar extender by Rajneesh Verma

When we are using AJAX calendar extender with Textbox then its difficult to fix it read only (Normally if we fix it as read only then we won't get date on page behind). But the solution is simple. Code Snippet protected void Page_Load( object sender,...
Filed under: , ,
3
Comments

JAVA Script confirmation message on button click by Rajneesh Verma

HI, some times we stuck that how to show confirmation message to do a server side event for example to delete record message should be “Are you sure you want to delete?” so the simplest option is: Code Snippet < asp : Button ID ="Button1"...
Filed under: , ,
1
Comments

Run the Windows .net Application in System Tray on System Startup by Rajneesh Verma

Hi, Today i have created a .net windows application which has following key points. 1. Run only one instance of the project: to achieve this i have change the code of Program.cs as: Code Snippet static class Program { /// <summary> /// The main...
14
Comments

Sum of two Textbox values into third Textbox using JQuery by Rajneesh Verma

A script that sums up two textbox values using jQuery. **Note that I am not using any validation for textbox values. <html xmlns= "http://www.w3.org/1999/xhtml" > <head runat= "server" > <title></title> <script...
More Posts Next page »