Click here to Skip to main content
15,921,452 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: remote connections Pin
Colin Angus Mackay14-Mar-07 1:47
Colin Angus Mackay14-Mar-07 1:47 
GeneralRe: remote connections Pin
Rami Said Abd Alhalim14-Mar-07 2:32
Rami Said Abd Alhalim14-Mar-07 2:32 
QuestionHow to get the Clients Operating System in asp.net 1.1 Pin
RaviJJain14-Mar-07 1:06
RaviJJain14-Mar-07 1:06 
AnswerRe: How to get the Clients Operating System in asp.net 1.1 Pin
kubben14-Mar-07 14:44
kubben14-Mar-07 14:44 
QuestionProblem with paging Pin
anujose14-Mar-07 0:39
anujose14-Mar-07 0:39 
AnswerRe: Problem with paging Pin
ToddHileHoffer14-Mar-07 2:08
ToddHileHoffer14-Mar-07 2:08 
QuestionImages in datagrid! Pin
nclauder14-Mar-07 0:14
nclauder14-Mar-07 0:14 
AnswerRe: Images in datagrid! Pin
varshavmane14-Mar-07 3:29
varshavmane14-Mar-07 3:29 
hi I have not done anything like this but I think I can try.I have done similiar but using checkbox, but I just need to check or uncheck the checkbox u can do the same for radion button.
U can use this:
<asp:TemplateField HeaderText="Modify">
<ItemStyle HorizontalAlign="Center" Width="50px" />
<HeaderStyle Width="70px" CssClass="heading" />
<ItemTemplate>
<asp:CheckBox ID="chkModify" runat="server" AutoPostBack=true OnCheckedChanged="chkModify_Changed" />
</ItemTemplate>
</asp:TemplateField>


Dim ml_blnflagView As Boolean = False
For intGridRowcounter = 0 To GridViewForm.Rows.Count - 1
If CType(GridViewForm.Rows(intGridRowcounter).FindControl("chkModify"), CheckBox).Checked = False Then
ml_blnflagModify = True
'Exit For
Else
'If cboUserName.SelectedIndex = 0 Then
' CType(GridViewForm.Rows(intGridRowcounter).FindControl("chkUpdate"), CheckBox).Checked = False
' Hidden2.Value = 1
' Exit Sub
'End If
CType(GridViewForm.Rows(intGridRowcounter).FindControl("chkView"), CheckBox).Checked = True
End If
If CType(GridViewForm.Rows(intGridRowcounter).FindControl("chkView"), CheckBox).Checked = True Then
ml_blnflagView = True
'Exit For
Else
ml_blnflagView = False
End If

Next
If ml_blnflagModify = True Then
chkAllModify.Checked = False
chkAllPermission.Checked = False
Else
chkAllModify.Checked = True
chkAllView.Checked = True
AllPermission()
'chkAllPermission.Checked = True
End If
If ml_blnflagView = False Then
chkAllView.Checked = False
chkAllPermission.Checked = False
End If
If chkAllAdd.Checked = True And chkAllModify.Checked = True And chkAllDelete.Checked = True And chkAllView.Checked = True And chkAllPrint.Checked = True Then
chkAllPermission.Checked = True
End If
End Sub



Hope this helps u...

All the best...
GeneralRe: Images in datagrid! Pin
nclauder14-Mar-07 5:00
nclauder14-Mar-07 5:00 
QuestionLoad Report Failed Error in CrystalReport Pin
siddisagar14-Mar-07 0:00
siddisagar14-Mar-07 0:00 
AnswerRe: Load Report Failed Error in CrystalReport Pin
Sylvester george14-Mar-07 0:19
Sylvester george14-Mar-07 0:19 
Questionlogin form + asp.net 2.0 + c# Pin
ritu432113-Mar-07 23:40
ritu432113-Mar-07 23:40 
AnswerRe: login form + asp.net 2.0 + c# Pin
Sylvester george13-Mar-07 23:53
Sylvester george13-Mar-07 23:53 
GeneralRe: login form + asp.net 2.0 + c# Pin
ritu432114-Mar-07 0:04
ritu432114-Mar-07 0:04 
GeneralRe: login form + asp.net 2.0 + c# Pin
Sylvester george14-Mar-07 0:09
Sylvester george14-Mar-07 0:09 
QuestionPaging Pin
vengaqua13-Mar-07 23:33
vengaqua13-Mar-07 23:33 
AnswerRe: Paging Pin
siddisagar14-Mar-07 0:45
siddisagar14-Mar-07 0:45 
GeneralRe: Paging Pin
vengaqua14-Mar-07 1:09
vengaqua14-Mar-07 1:09 
GeneralRe: Paging Pin
vengaqua14-Mar-07 2:30
vengaqua14-Mar-07 2:30 
GeneralRe: Paging Pin
siddisagar14-Mar-07 21:15
siddisagar14-Mar-07 21:15 
GeneralRe: Paging Pin
siddisagar9-Apr-07 2:34
siddisagar9-Apr-07 2:34 
QuestionCapicom encryption - require clarification Pin
anufabian13-Mar-07 23:13
anufabian13-Mar-07 23:13 
QuestionDate format Pin
vengaqua13-Mar-07 23:12
vengaqua13-Mar-07 23:12 
AnswerRe: Date format Pin
Sun Rays13-Mar-07 23:23
Sun Rays13-Mar-07 23:23 
QuestionURGANT help in asp script call back Pin
r_jaz13-Mar-07 22:57
r_jaz13-Mar-07 22: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.