Super User
how to print a part of page
it is easier to print part of page.the part of the page
may be under a div or panel.you can achieve this from code
behind file too as per requirement.here i showing only
in page lavel -
how to export GridView items to excel with header information
Asp.net makes it easy to export tabular data to excel file.It's
easier to use GridView control data to export to excel.the following
codes shows how u can achieve this along with some header info at the
top of the data rows in excel -
how to disable cache in any page asp.net
you may read many article in web about how to make a page
not to be cached using meta tags like that in the head
section -
how to resize or make thumbnail image in asp.net
by the following way you can resize a image to a predefined
dimension and resolution.you can also use it to make a image
thumbnails.
how to get RadioButtonList selected index and text using jquery
if you want to get the selected index or text of a asp.net
RadioButtonList using jquery then use the codes below -
how to check/uncheck checkboxes in gridview using jquery
the following codes will help you to implement check all
or uncheck all capability in the gridview.in that case
when header check box checked all items check box will
be checked and vice versa.
how to download file when file download button inside updatepanel
many times when file download button inside updatepanel and you use
Page.Response methods for file downloading then things not go right
in some cases.
how to use RadioButton OnCheckedChanged event
Its easy to implement OnCheckedChanged event of RadioButton
control but most programmers makes mistake by not
including AutoPostBack="True" property in radiobutton
control.sometimes OnCheckedChanged not works for that
reason.here are the full working codes -
how to show/hide panel on button click in datalist item
Its a common requirement.most developers want to show/hide
panel/div on a button click in datalist item.this post
will help everyone -
dealing with CSS browser differences by javascript & css hacks
most developers have been facing the problem that pages
not appears same in different browsers.mostly internet
explorer makes problem than other browsers.
to overcome that probelm different style sheets for different
browsers is a good approach -