Click here to Skip to main content
15,904,339 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Gridview with checkbox column Pin
N a v a n e e t h21-Jan-08 19:26
N a v a n e e t h21-Jan-08 19:26 
GeneralRe: Gridview with checkbox column Pin
Anupbala21-Jan-08 19:48
Anupbala21-Jan-08 19:48 
GeneralRe: Gridview with checkbox column Pin
N a v a n e e t h21-Jan-08 19:59
N a v a n e e t h21-Jan-08 19:59 
GeneralRe: Gridview with checkbox column Pin
Anupbala21-Jan-08 20:27
Anupbala21-Jan-08 20:27 
GeneralRe: Gridview with checkbox column Pin
bokuceres21-Jan-08 22:28
bokuceres21-Jan-08 22:28 
GeneralRe: Gridview with checkbox column Pin
Anupbala22-Jan-08 0:49
Anupbala22-Jan-08 0:49 
GeneralRe: Gridview with checkbox column Pin
bokuceres23-Jan-08 14:38
bokuceres23-Jan-08 14:38 
GeneralRe: Gridview with checkbox column Pin
Anupbala23-Jan-08 19:16
Anupbala23-Jan-08 19:16 
Hi Boku,
Thanks for your response,i have found a solution for this in the other way as i said.
i am already having the entire records in a datatable,so there is no need to query it back again.
here is my solution

DataTable dt = GetAllRows();
DataTable dt1 = dt.Clone();

int count = 0;
DataRow row = null;
foreach (GridViewRow gv in gv1.Rows)
{
CheckBox cb = (CheckBox)gv.FindControl("chkSelect");
if (cb.Checked)
{
row = dt.Rows[gv.RowIndex];
dt1.ImportRow(row);
count++;
}

}
dt1.AcceptChanges();
I am posting it as it comes helpful for somebody elseBig Grin | :-D
GeneralRe: Gridview with checkbox column Pin
bokuceres23-Jan-08 20:00
bokuceres23-Jan-08 20:00 
GeneralRe: Gridview with checkbox column Pin
Elayaraja Sambasivam22-Jan-08 3:27
Elayaraja Sambasivam22-Jan-08 3:27 
GeneralProblem Related to Dundas chart Pin
Aavesh Agarwal21-Jan-08 18:44
Aavesh Agarwal21-Jan-08 18:44 
Questioncan we use two sitemap in a project Pin
mohd imran abdul aziz21-Jan-08 18:17
mohd imran abdul aziz21-Jan-08 18:17 
AnswerRe: can we use two sitemap in a project Pin
N a v a n e e t h21-Jan-08 19:17
N a v a n e e t h21-Jan-08 19:17 
QuestionNeed some suggestions in ASP.NET Pin
Jats_4ru21-Jan-08 18:12
Jats_4ru21-Jan-08 18:12 
GeneralRe: Need some suggestions in ASP.NET Pin
Abhijit Jana21-Jan-08 18:18
professionalAbhijit Jana21-Jan-08 18:18 
NewsRe: Need some suggestions in ASP.NET Pin
Venkatesh Mookkan21-Jan-08 18:35
Venkatesh Mookkan21-Jan-08 18:35 
GeneralRe: Need some suggestions in ASP.NET Pin
N a v a n e e t h21-Jan-08 19:09
N a v a n e e t h21-Jan-08 19:09 
GeneralRe: Need some suggestions in ASP.NET Pin
pmarfleet21-Jan-08 19:42
pmarfleet21-Jan-08 19:42 
GeneralRe: Need some suggestions in ASP.NET Pin
N a v a n e e t h21-Jan-08 19:47
N a v a n e e t h21-Jan-08 19:47 
QuestionDropDownList Pin
senthilsstil21-Jan-08 17:58
senthilsstil21-Jan-08 17:58 
Generalquestion about Visual STudio 2008 Pin
orsini21-Jan-08 9:37
orsini21-Jan-08 9:37 
GeneralRe: question about Visual STudio 2008 Pin
sulabh202021-Jan-08 18:27
sulabh202021-Jan-08 18:27 
General800x600 website Pin
eyeseetee21-Jan-08 9:35
eyeseetee21-Jan-08 9:35 
GeneralRe: 800x600 website Pin
StianSandberg21-Jan-08 10:13
StianSandberg21-Jan-08 10:13 
Generalget screen resolution Pin
kani9821-Jan-08 8:59
kani9821-Jan-08 8:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.