What is the problem with following code?
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
If Not IsPostBack Then
BindTheGrid("A")
End If
End Sub
Why my above code is not working? Even debug poing is not coming to this method while debugging.
Thanks