Want a solution for this problem
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
How to set focus to a item of the checkboxlist in asp.net..
Dinesh.S
-
How to set focus to a item of the checkboxlist in asp.net..
Dinesh.S
-
How to set focus to a item of the checkboxlist in asp.net..
Dinesh.S
In your form load complete(it's mean after all process has been done), you can set which checkbox that you want to focus. For example:
Protected Sub Page_LoadComplete(ByVal sender As Object, ByVal e As System.EventArgs) Handles LoadComplete
If (your condition) Then
chkExample.Focus()
ElseIf (your condition) Then
chkExample2.Focus()
End IfGood Luck..=)