Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

check

Access server side variable in javascript
Tuesday, 31 January 2012 09:31
Add following javascript function to aspx page


function check() {
alert("this is check value " + '<%= checkvalue %>');
}


Add following variable declaration on server side i.e aspx.cs

public string checkvalue ="indrnilhafa";

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/OMJIbSmkUX4/14581

 
Javascript to check all the header check boxes of grid view
Saturday, 28 January 2012 01:55
// Javascript to check all the header check boxes of grid view



function SelectAllGridCheckBoxes(checkBoxId) {
var frmElements = document.forms[0];
for (i = 0; i < frmElements .elements.length; i++) {
if (frmElements .elements[i].type == "checkbox") {
frmElements .elements[i].checked = checkBoxId.checked;
}
}
return false;
}

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/-mfTrgrghf8/14509

 
code to check all the check boxes of a grid
Friday, 30 December 2011 03:19
// code to check all the check boxes of a grid

function SelectAll(headerCheckBox, childCheckBoxId) {
var frm = document.forms[0];
for (i = 0; i < frm.elements.length; i++) {
if (frm.elements[i].type == "checkbox" && frm.elements[i].id.indexOf(childCheckBoxId, 0) >= 0) {
if (frm.elements[i].disabled == false) {
frm.elements[i].checked = headerCheckBox.checked;
}
}
}
return false;
}
/// Call it like this

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/kd6O0IMLqB8/14369

 
Price Check by Amazon: Make Sure You're Really Getting a Good Deal [Android Apps]
Thursday, 24 November 2011 18:00
Tomorrow's Black Friday. In the future, Thanksgiving will be known as Black Friday Eve. Families will condition their bodies to consume large amounts of poultry and starches to keep them fueled up for door-busting madness. While we await this dystopian future you can check out our Black Friday super chart and download Price Check by Amazon app for your Android phone. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/Ke8Q521DSlg/price-check-by-amazon-make-sure-youre-really-getting-a-good-deal

 
Re: Resizing Image in C#
Monday, 19 September 2011 09:59
Hi All,
Please check out the following links.....
http://mindstick.com/Articles/b1984687-85b1-469f-b874-c6b0fd4f1d48/?Resizing%20Image%20in%20C#

Thanks !!!!

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/Vbty0QQMrkY/13637

 
Start
Prev
1


Page 1 of 3
Taxonomy by Zaragoza Online