Aspdotnet-Suresh

aspdotnet-suresh offers C#.net articles and tutorials,csharp dot net,asp.net articles and tutorials,VB.NET Articles,Gridview articles,code examples of asp.net 2.0 /3.5,AJAX,SQL Server Articles,examples of .net technologies

Validate DropdownList Using JQuery in Asp.Net

Sep 12, 2012 1 comments
Introduction

Here I will explain how to validate dropdownlist using
JQuery using asp.net.

Description:
  
In previous articles I explained validate checkboxlist in JQuery, validate radiobuttonlist using JQuery,
validate email address using JQuery and many articles relating to JQuery. Now I will explain how to validate dropdownlist using JQuery in asp.net.

jQuery Validate CheckBoxList in Asp.Net Example

1 comments
Introduction

Here I will explain how to validate checkboxlist using
JQuery using asp.net.

Description:
  
In previous articles I explained validate radiobuttonlist using JQuery,
validate email address using JQuery, how to disable or enable all the controls on page using JQuery , validate phone number using JQuery and many articles relating to JQuery. Now I will explain how to validate checkboxlist using JQuery in asp.net.

JQuery Validate RadioButtonList in Asp.Net Example

2 comments
Introduction

Here I will explain how to validate radiobuttonlist using
JQuery using asp.net.

Description:
  
In previous articles I explained
validate email address using JQuery, how to disable or enable all the controls on page using JQuery , validate phone number using JQuery and many articles relating to JQuery. Now I will explain how to validate radiobuttonlist using JQuery in asp.net.

JQuery Select Header Checkbox When All Child Checkboxes Selected in Asp.net Gridview

Sep 9, 2012 3 comments
Introduction:

In this article I will explain how to check/uncheck or select/deselect all the checkboxes in gridview with header checkbox using JQuery in asp.net.

Description:

In previous article I explained select/deselect checkboxes in gridview using JQuery and
how to select/deselect checkboxes in gridview using JavaScript and many articles relating to JavaScript and JQuery. Now I will explain how to select/deselect header checkbox when all child checkboxes selected in gridvuew using JQuery.

Check Uncheck All Checkboxes in Gridview Using JQuery

Sep 8, 2012 14 comments
Introduction:

In this article I will explain how to check/uncheck or select/deselect all the checkboxes in gridview with header checkbox using JQuery in asp.net.

Description:

In previous article I explained how to select/deselect checkboxes in gridview using JavaScript and many articles relating to JavaScript. Now I will explain how to check/uncheck or select/deselect all the checkboxes in gridview with header checkbox in JQuery.

SQL String or Binary Data Would be Truncated. The Statement has been Terminated

Sep 7, 2012 15 comments
Introduction: 

Here I will explain how to solve the problem of “string or binary data would be truncated. The statement has been terminated.” in sql server. 

Description:

One day I am trying to insert data into one table using SQL queries at that time I got error like “String or binary data would be truncated. The statement has been terminated.” Actually this problem because of I declared column datatype varchar(25) but I am inserting data more than 25 characters in that column. To solve this problem I modified column datatype varcha (25) to varchar(50)

Best jquery password strength plugin Examples to show password strength

Sep 6, 2012 8 comments
Introduction

Here I will explain different type of JQuery password strength meter or indicator plugins.

Description:
  
In previous posts I explained Show password strength meter using AJAX in asp.net and Show password strength using JQuery Plugin in asp.net and many articles relating to
JQuery. Now I will explain different type of available JQuery password strength indicator plugins.


This plugin extends the jQuery validation plugin, providing two components:

     1)  A function that rates passwords for factors like mixed upper/lower case, mix of characters (digits, special characters), length and similarity to a username (optional).

How to Add Fade In Effect to Webpage using JQuery in asp.net

Sep 2, 2012 2 comments
Introduction

Here I will explain how to load webpage content with fade in effect using jquery in asp.net.

Description:
  
In previous post I explained hide or show div content elements using JQuery and many articles relating to
JQuery. Now I will explain how to add fade in effect to webpage using Jquery in asp.net.

If we want to implement fade in effect to webpage in jquery we need to write the code like as shown below


<script type="text/javascript">
$(document).ready(function() {
$('#fadediv').fadeIn(2000);
});
</script>
In above script fadediv is the id of the div which is used to load the inside of div content with fadein effect. If you want sample check below code

JQuery - How to Set Get Textbox Value using jQuery

6 comments
Introduction

Here I will explain how to get textbox value using jquery or how to set textbox value in jquery.

Description:
  
In previous post I explained
split the string using split function in jquery and many articles relating to JQuery. Now I will explain how to get or set textbox value in JQuery.

If we want to get textbox value in jquery or if we need to set value in textbox using jquery we need to write the code like as shown below


// Get textbox value
$('#txtName').val()
// Set textbox value
$('#txtName').val("your message")
If you want check this code in sample check below code

Use Split Function in JQuery to Split the String in Asp.net

Sep 1, 2012 9 comments
Introduction

Here I will explain how to split the string using split function in JQuery with asp.net.

Description:
  
In previous posts I explained many articles relating to JQuery. Now I will explain how to split the string using split function in JQuery.

To split the string we have function called Split() in JQuery by using that we can split string based on our specific character that would like as shown below
© 2015 Aspdotnet-Suresh.com. All Rights Reserved.
The content is copyrighted to Suresh Dasari and may not be reproduced on other websites without permission from the owner.