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

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

Asp.net Get Dropdown Selected value and text in JavaScript

1 comments
Introduction

Here I will explain how to get dropdownlist selected value or selected item text using JavaScript in asp.net.

Description:
  
In previous article I explained Fire Dropdownlist selectedindexchanged event  and many articles relating to JavaScript. Now I will explain how to get dropdownlist selected value using JavaScript in asp.net.

Asp.net Dropdownlist Selectedindexchanged Event in JavaScript

7 comments
Introduction

Here I will explain how to raise dropdownlist selectedindexchanged event in JavaScript using
asp.net.

Description:
  
In previous articles I explained
How to bind dropdownlist using JQuery and how to get dropdownlist selected value and text using JQuery and many articles relating to JQuery. Now I will explain how to raise dropdownlist selectedindexchanged event in JavaScript using asp.net.

Asp.net Dropdownlist SelectedIndexChanged Event in JQuery

13 comments
Introduction

Here I will explain how to raise dropdownlist selectedindexchanged event in jquery using asp.net.

Description:
  
In previous articles I explained
How to bind dropdownlist using JQuery and how to get dropdownlist selected value and text using JQuery and many articles relating to JQuery. Now I will explain how to raise dropdownlist selectedindexchanged event in JQuery using asp.net.

JQuery get dropdown selected value and text in asp.net

6 comments
Introduction

Here I will explain how to get dropdownlist selected value or selected item text using JQuery in asp.net.

Description:
  
In previous articles I explained How to bind dropdownlist using JQuery and many articles relating to JQuery. Now I will explain how to get dropdownlist selected value using JQuery in asp.net.

If we want to get dropdownlist selected value or selected item text in JQuery we need to write the code 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.