Browse by Tags

All Tags » .NET (RSS)

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

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

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

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

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: , ,

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: , ,

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

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