Click here to Skip to main content
15,914,231 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Read data from gridview Pin
dinus287-Feb-07 0:50
dinus287-Feb-07 0:50 
GeneralRe: Read data from gridview Pin
mail5723527-Feb-07 1:37
mail5723527-Feb-07 1:37 
AnswerRe: Read data from gridview Pin
gauthee6-Feb-07 23:50
gauthee6-Feb-07 23:50 
GeneralRe: Read data from gridview Pin
dinus286-Feb-07 23:54
dinus286-Feb-07 23:54 
GeneralRe: Read data from gridview Pin
gauthee7-Feb-07 0:01
gauthee7-Feb-07 0:01 
GeneralRe: Read data from gridview Pin
gauthee7-Feb-07 0:03
gauthee7-Feb-07 0:03 
GeneralRe: Read data from gridview Pin
mail5723527-Feb-07 0:39
mail5723527-Feb-07 0:39 
AnswerRe: Read data from gridview Pin
varshavmane6-Feb-07 23:57
varshavmane6-Feb-07 23:57 
If u just want to read the Gridview values then try this :

For intGridRowcnt = 1 To GridViewQuery.Rows.Count
If intGridRowcnt = GridViewQuery.Rows.Count Then
strWhereClause = strWhereClause & GridViewQuery.Rows(intGridRowcnt - 1).Cells(3).Text & " "
strWhereClause = strWhereClause & GridViewQuery.Rows(intGridRowcnt - 1).Cells(4).Text & " "
strWhereClause = strWhereClause & GridViewQuery.Rows(intGridRowcnt - 1).Cells(5).Text & " "
Else
strWhereClause = strWhereClause & GridViewQuery.Rows(intGridRowcnt - 1).Cells(3).Text & " "
strWhereClause = strWhereClause & GridViewQuery.Rows(intGridRowcnt - 1).Cells(4).Text & " "
strWhereClause = strWhereClause & GridViewQuery.Rows(intGridRowcnt - 1).Cells(5).Text & " "
strWhereClause = strWhereClause & GridViewQuery.Rows(intGridRowcnt - 1).Cells(6).Text & " "
End If
Next
AnswerRe: Read data from gridview Pin
Murthy Puvvada7-Feb-07 2:11
Murthy Puvvada7-Feb-07 2:11 
Questiondatagrid in a seperate cs file Pin
gauthee6-Feb-07 23:33
gauthee6-Feb-07 23:33 
AnswerRe: datagrid in a seperate cs file Pin
Paddy Boyd6-Feb-07 23:36
Paddy Boyd6-Feb-07 23:36 
GeneralRe: datagrid in a seperate cs file Pin
gauthee6-Feb-07 23:57
gauthee6-Feb-07 23:57 
GeneralRe: datagrid in a seperate cs file Pin
blue_arc7-Feb-07 0:34
blue_arc7-Feb-07 0:34 
GeneralRe: datagrid in a seperate cs file Pin
gauthee7-Feb-07 0:43
gauthee7-Feb-07 0:43 
QuestionOnline Radio Pin
M A A Mehedi Hasan6-Feb-07 23:29
M A A Mehedi Hasan6-Feb-07 23:29 
QuestionOrchestration Pin
indian1436-Feb-07 23:05
indian1436-Feb-07 23:05 
AnswerRe: Orchestration Pin
badgrs6-Feb-07 23:24
badgrs6-Feb-07 23:24 
AnswerRe: Orchestration Pin
gauthee6-Feb-07 23:35
gauthee6-Feb-07 23:35 
Questionthe server problem [modified] Pin
Sebastian T Xavier6-Feb-07 22:45
Sebastian T Xavier6-Feb-07 22:45 
AnswerRe: the server problem Pin
PSK_6-Feb-07 22:51
PSK_6-Feb-07 22:51 
GeneralRe: the server problem Pin
Sebastian T Xavier6-Feb-07 22:59
Sebastian T Xavier6-Feb-07 22:59 
Questioneffective life cycle maintenance Pin
indian1436-Feb-07 22:23
indian1436-Feb-07 22:23 
AnswerRe: effective life cycle maintenance Pin
Colin Angus Mackay6-Feb-07 22:34
Colin Angus Mackay6-Feb-07 22:34 
GeneralRe: effective life cycle maintenance Pin
indian1436-Feb-07 22:44
indian1436-Feb-07 22:44 
GeneralRe: effective life cycle maintenance Pin
Colin Angus Mackay6-Feb-07 23:38
Colin Angus Mackay6-Feb-07 23: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.