Click here to Skip to main content
15,895,799 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: form closing event Pin
InsDev3-Nov-07 1:30
InsDev3-Nov-07 1:30 
GeneralRe: form closing event Pin
Sonia Gupta3-Nov-07 1:42
Sonia Gupta3-Nov-07 1:42 
GeneralRe: form closing event Pin
Mircea Grelus3-Nov-07 2:05
Mircea Grelus3-Nov-07 2:05 
GeneralRe: form closing event Pin
John-ph3-Nov-07 2:54
John-ph3-Nov-07 2:54 
AnswerRe: form closing event Pin
Unknown Ajanabi3-Nov-07 3:09
Unknown Ajanabi3-Nov-07 3:09 
AnswerRe: form closing event Pin
Christian Graus3-Nov-07 12:00
protectorChristian Graus3-Nov-07 12:00 
QuestionSelected row in Nested Gridview Pin
munawargani3-Nov-07 0:39
munawargani3-Nov-07 0:39 
AnswerRe: Selected row in Nested Gridview Pin
John-ph6-Nov-07 4:57
John-ph6-Nov-07 4:57 
Navigate through the items of the GridView and find the radiobutton control and check whether it's selected or not. you should be able to access the ID too using the Datakey's property of the GridView. something like this...

For Each gv As GridViewRow In GridView1.Rows
  If CType(gv.FindControl("rbtn"), RadioButton).Checked Then
     RowID = CInt(GridView1.DataKeys(gv.RowIndex).Value)
  End If
Next


 Regards
 - J O H N -



Questionproblem with IIS Pin
amin_behzadi3-Nov-07 0:19
professionalamin_behzadi3-Nov-07 0:19 
AnswerRe: problem with IIS Pin
Saksida Bojan3-Nov-07 0:25
Saksida Bojan3-Nov-07 0:25 
AnswerRe: problem with IIS Pin
Christian Graus3-Nov-07 0:26
protectorChristian Graus3-Nov-07 0:26 
GeneralRe: problem with IIS Pin
amin_behzadi3-Nov-07 1:08
professionalamin_behzadi3-Nov-07 1:08 
GeneralRe: problem with IIS Pin
Sonia Gupta3-Nov-07 1:19
Sonia Gupta3-Nov-07 1:19 
GeneralRe: problem with IIS Pin
amin_behzadi3-Nov-07 1:23
professionalamin_behzadi3-Nov-07 1:23 
GeneralRe: problem with IIS Pin
InsDev3-Nov-07 1:36
InsDev3-Nov-07 1:36 
GeneralRe: problem with IIS Pin
Sonia Gupta3-Nov-07 1:47
Sonia Gupta3-Nov-07 1:47 
AnswerRe: problem with IIS Pin
Guffa3-Nov-07 1:59
Guffa3-Nov-07 1:59 
GeneralRe: problem with IIS Pin
amin_behzadi3-Nov-07 19:45
professionalamin_behzadi3-Nov-07 19:45 
AnswerRe: problem with IIS Pin
Guffa4-Nov-07 9:40
Guffa4-Nov-07 9:40 
AnswerRe: problem with IIS Pin
Unknown Ajanabi3-Nov-07 3:16
Unknown Ajanabi3-Nov-07 3:16 
AnswerRe: problem with IIS Pin
Paul Conrad3-Nov-07 5:24
professionalPaul Conrad3-Nov-07 5:24 
AnswerRe: problem with IIS Pin
Braulio Dez3-Nov-07 6:22
Braulio Dez3-Nov-07 6:22 
Questionvb script in body and head Pin
Sonia Gupta2-Nov-07 23:41
Sonia Gupta2-Nov-07 23:41 
AnswerRe: vb script in body and head Pin
Christian Graus2-Nov-07 23:44
protectorChristian Graus2-Nov-07 23:44 
GeneralRe: vb script in body and head Pin
Sonia Gupta2-Nov-07 23:57
Sonia Gupta2-Nov-07 23:57 

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.