Browse by Tags

All Tags » ASP.NET (RSS)

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

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

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

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

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

DateTime issue when trying to convert from string to dateTime by Rajneesh Verma

Normally when our system follow UK culture and our server uses US culture then we are facing problem when we are trying to convert String value to Datetime as: DateTime dt = Convert.ToDateTime(TextBox1.Text); and if we enter Date in textbox greater than...
More Posts Next page »