Browse by Tags
All Tags »
Javascript (
RSS)
In this post I will explain you, How to make calendar extender control to show month / year view by default and instead of selecting dates how can we use calendar extender to select months. Before I start, let me say that I got extensive support from...
In this post I will explain you, how can we serialize Datatable to JSON. So that, it can easily pass to JavaScript to get the AJAX done. First of all fill a Datatable with some results. DataTable dt = new DataTable(); SqlConnection objSqlCon =...
Today, while creating some javascript popup I had a condition in which I place onclick function on body tag. I had an other button which also implement onclick. So the code looks like as follows 1: < body onclick ="disappearPopup()" >...
Here is the quick code to get the current time in 12 hours format using JavaScript. 1: <script language= "javascript" > 2: function getTime() { 3: var dTime = new Date(); 4: var hours = dTime.getHours(); 5: var minute = dTime.getMinutes...
More Posts