jQuery : How to change the label/span text when my radio option is checked or changed. I created this jsFiddle for someone, you can see it as -HTML Code:
<html>
<tr><td colspan="2"> <span id="labelMsgForRadioClick">Select your choice</span> </td&g...
[More]
We can use window.open() to export table data into Excel or any required format. It is the easiest and simplest way of creating a file with data without server side trip. window.open() requires 2 input parameters for this, (1) the required MIMEtype and (2) element that contains our data table .If you want to export your Gridview data, then place that Gridview inside a container like DIV and supply the DIV to winodw.open(). Also, be noted that window.open() has its scope and limitations in terms of browser vendors and customizing output file name.
[More]
In this blog I am not going to write a big epic on how to crack interviews but just briefing on it i
[More]
jQuery slice() method is very useful and give more flexibility than substring method of jQuery. It takes 2 parameter and both are optional. If none is specified then it sliced the whole. Important thing with this method is that it doesn't consider the last sliced item in its result.
...
[More]
27. June 2012
Anil Kumar
C#
Understand Sealed Class in C# programming
[More]
jQuery 1.8 first BETA version is released and can be experienced by downloading it from jQuery CDN.
[More]
We can find the checked value of a radio button using :checked attribute and radio button's name as a selector.
The System.Web namespace contains the important base level ingredients for ASP.NET applications. System.Web namespace is an important base for Web Form user interface and web services.
Use of Built-in Objects like Request and Response are very common and widely used. We directly write them without creating objects as they are built-in objects.This namespace has following built-in Objects : (1) Request (2) Response (3) Server (4) Application
[More]
How to get the list of all tables that are not having any indexes on them :
Today, I got a question on this and decided to put the way here also.
SELECT [name] AS Tables_Without_Indexes
FROM sys.tables
WHERE OBJECTPROPERTY(OBJECT_ID,'IsIndexed') = 0
ORDER BY 1;
The above statemen...
[More]
There is a system stored procedure “sp_helpindex”, which can be used to get the list of all existing indexes by supplying table name to it. We can use this stored procedure as –
EXECUTE sp_helpindex my_Table_Name
[More]