Click here to Skip to main content
15,910,118 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionBarcode read and write Pin
Sarfaraj Ahmed24-Sep-07 4:52
Sarfaraj Ahmed24-Sep-07 4:52 
AnswerRe: Barcode read and write Pin
Not Active24-Sep-07 6:13
mentorNot Active24-Sep-07 6:13 
AnswerRe: Barcode read and write Pin
Cfer8324-Sep-07 6:44
Cfer8324-Sep-07 6:44 
Questionneed help pull values from DataSet with DAL Pin
Mio200524-Sep-07 4:46
Mio200524-Sep-07 4:46 
Questionsingle sign on [modified] Pin
acodman24-Sep-07 4:33
acodman24-Sep-07 4:33 
AnswerRe: single sign on Pin
Christian Graus24-Sep-07 12:38
protectorChristian Graus24-Sep-07 12:38 
Questionhow to change datafield property of a boundfield in a gridview Pin
here2learn24-Sep-07 4:32
here2learn24-Sep-07 4:32 
AnswerRe: how to change datafield property of a boundfield in a gridview Pin
saini arun24-Sep-07 18:17
saini arun24-Sep-07 18:17 
Hi!

You just need to traverse thru each row of your datagrid and then change the data according to your need.

foreach (GridViewRow gvRow in dgTestGrid.Rows)
{
// Get the check box from 0th column in current row of grid
CheckBox cb = (CheckBox)gvRow.Cells[0].FindControl("CheckBox1");
if(cb.Checked)
{
// change the data in 1st & 2nd cells of current row according to check box
// 1st cell is for Client number and 2nd is for Client name
gvRow.Cells[1].Text = "ABC";
gvRow.Cells[2].Text = "XYZ";
}
}

--------------------------
Hope this will help.


“The woods are lovely, dark and deep. But I have promises to keep, and miles to go before I sleep.”

QuestionHow AJAX file Used in .Net Pin
varma penmatsa24-Sep-07 2:29
varma penmatsa24-Sep-07 2:29 
AnswerRe: How AJAX file Used in .Net Pin
Guffa24-Sep-07 2:41
Guffa24-Sep-07 2:41 
QuestionWeb Service Project Build Events Pin
originSH24-Sep-07 2:12
originSH24-Sep-07 2:12 
QuestionPublish the Project of site Pin
.NET- India 24-Sep-07 2:08
.NET- India 24-Sep-07 2:08 
AnswerRe: Publish the Project of site Pin
saini arun24-Sep-07 18:21
saini arun24-Sep-07 18:21 
GeneralRe: Publish the Project of site Pin
.NET- India 24-Sep-07 18:47
.NET- India 24-Sep-07 18:47 
GeneralRe: Publish the Project of site Pin
saini arun24-Sep-07 19:02
saini arun24-Sep-07 19:02 
GeneralRe: Publish the Project of site Pin
.NET- India 24-Sep-07 20:43
.NET- India 24-Sep-07 20:43 
GeneralRe: Publish the Project of site Pin
saini arun24-Sep-07 20:46
saini arun24-Sep-07 20:46 
QuestionData view problem Pin
Shaurya_Rastogi24-Sep-07 2:03
Shaurya_Rastogi24-Sep-07 2:03 
AnswerRe: Data view problem Pin
kubben24-Sep-07 3:17
kubben24-Sep-07 3:17 
GeneralRe: Data view problem Pin
Shaurya_Rastogi24-Sep-07 18:38
Shaurya_Rastogi24-Sep-07 18:38 
GeneralRe: Data view problem Pin
kubben25-Sep-07 0:30
kubben25-Sep-07 0:30 
GeneralRe: Data view problem Pin
Shaurya_Rastogi25-Sep-07 0:38
Shaurya_Rastogi25-Sep-07 0:38 
GeneralRe: Data view problem Pin
kubben25-Sep-07 0:50
kubben25-Sep-07 0:50 
QuestionMy Web site not shown in search engines Pin
g_f_r24-Sep-07 2:03
g_f_r24-Sep-07 2:03 
AnswerRe: My Web site not shown in search engines Pin
Brent Lamborn24-Sep-07 3:38
Brent Lamborn24-Sep-07 3:38 

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.