Related Posts Plugin for WordPress, Blogger...

About

Follow Us

Thursday, 23 April 2015

Introduction: In this article I will explain how to disable submit button after click or submit. When the Submit button is clicked, the JavaScript “onbeforeunload” event handler is triggered....
Introduction: In this article I will explain how to get value of Label control on server side where value of control is set by using JavaScript or Jquery....
Introduction: In this article I will explain how to get the Text and Value of multiple selected items of ASP.Net ListBox using JavaScript and jQuery. ...

Wednesday, 22 April 2015

Introduction:  In this article I will explain how to get dropdown selected value and text in JavaScript and jQuery . Following Javascript is used to get value of dropdown:...
Introduction:  In this article I will explain how to validate (check) HTML Select DropDownList using JavaScript.   The HTML Button has been assigned a JavaScript OnClick event handler. When the Button is clicked, the Validate JavaScript function is executed,  if the selected...

Friday, 17 April 2015

Introduction:  In this article I will explain how to use generate year dropdown dynamically in JavaScript or jQuery generate years dropdown dynamically. Following  JQuery script is used to generate year dropdown dynamically: <script type="text/javascript">    ...
Introduction:      In this Article I will explain how to show jQuery UI date picker with Month Year dropdown Options. In this example I will show only month and year, but we can also show dat...
Introduction: In this article I will explain how to bind data to dropdownlist in gridview in asp.net using dataset. This is the common requirement while working with gridview to populate dropdown list inside the gridvie...

Thursday, 16 April 2015

Introduction:  In this article I will explain how to redirect user to another web page using jQuery or JavaScript. By using location object in jQuery or JavaScript we can redirect user to another web page.  ...
Introduction:  In this article I will explain how to get stored procedure’s last modified date in SQL server 2008. Following query is used to get stored procedures last modified date: SELECT name, create_date, modify_date FROM sys.objects WHERE type = 'P' Result:  Get...
Introduction:  Some time while working in ASP.NET it is needed to find out the value or access the value of controls placed in footer. This can be done by using Javascript code.&nbs...

Tuesday, 14 April 2015

Introduction: Sometime it is need to export data to excel from gridview or datatable. We can export data through code in asp.net (using C# & vb.net). ...
Introduction:  In this Article I will explain how to show or display sum of columns total in gridview footer using asp.net in c#, vb.net. ...
Introduction:  In this article I will explain SQL server query to get list of all tables in database or get list of all the tables in SQL server 2008 database...

Monday, 13 April 2015

Introduction:  In this article, I will explain how to bind data to gridview in asp.net using dataset with example using c#, vb.net ....
Introduction:  Paging in gridview is very important concept in case of large data. If data is large, it is not possible to show data in single page. So in that case we will use paging to break data in no of pages. Pageindexchanging event of gridview is used for paging....
Introduction: In this article I will explain n how to set gridview column width in Asp.Net dynamically using c# and vb.net. There are many methods by using them we can set width dynamically. I have discussed three methods: Method 1: In case we are using Bound Fields (set  AutoGenerateColumns="false")  then we can set the columns width by using ItemStyle-Width property...