Last week i answered a question in forums.asp.net ( http://forums.asp.net/t/1877542.aspx/1?Webform+progress+Bar+ ) His criteria is in his words
In this blog i'm posting some Asp.net,Sql Server,Jquery,HTML-5,sqlite,C#,JavaScript scripts and sample codes that i found and created by me or my friends with a mind that it Save/ Help our ass some ways...
Thursday, January 31, 2013
Wednesday, January 30, 2013
Remove Duplicate Row from datatable in c#
As i was also unaware of this feature until i read as answer in fourms.asp.net (link). Previously i was achieved by using lambda expression.Now no need to those just one line code :)
If u had any trouble just ask, Happy to help u :)
Stay Tune... Have a nice day... 'N happy Coding :)
DataTable dt = new
DataTable
{
Columns ={
{"Myid",typeof(int)},
{"Name"},
{"Address"}
}
};
dt.Rows.Add(1, "Arun Aravind",
"Kollam");
dt.Rows.Add(1, "Arun Aravind",
"Kollam");
dt.Rows.Add(2, "Arun Aravind",
"Kollam");
dt.Rows.Add(2, "Arun Aravind",
"Kollam");
dt.Rows.Add(3, "Arun Aravind",
"Kollam");
dt =
dt.DefaultView.ToTable(false, "Address", "Name",
"Myid");
Output
If u had any trouble just ask, Happy to help u :)
Stay Tune... Have a nice day... 'N happy Coding :)
Tuesday, January 29, 2013
Changing image within Gridview programatically
Simple RowdataBound event isit? an alternate if it reduce memory load and time. wht abt that :)
Yup by jquery :)
Yup by jquery :)
Subscribe to:
Posts (Atom)