Browse by Tags

All Tags » Visual Studio 2008 (RSS)

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...

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...

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...

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...

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...

Add n number of blank rows in GridView without database. by Rajneesh Verma

Today I got a query to add 3 blank rows in GridView so I posted here. Some Key points are: 1. Add namespace using System.Data; 2. Define DataTable on Main Class: DataTable myDt; 3. Create a DataTable : private DataTable CreateDataTable() { DataTable myDataTable...

ASP.NET Popup Login control using DIV and CSS by Rajneesh Verma

This is my first blog. is there any mistake please forgive me. As i have seen that most people ask for Popup Login control in ASP.NET to achieve this their are number of ways but simplest method is to use DIV and CSS. First create login control in ASP...
More Posts