Yes i did that.
Protected Sub btnSearch_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSearch.Click
Try
Page.validate()
If Page.IsValid() Then
clsCommon.SetSession(SessionVariable.SRCH_FROM_DATE, txtFromDate.Text)
clsCommon.SetSession(SessionVariable.SRCH_THRU_DATE, txtThruDate.Text)
clsCommon.SetSession(SessionVariable.ACCT_NBR, txtAccountNbr.Text)
MyGridSort.ResetPosition()
PopulateGrid()
End If
Catch ex As Exception
MyBase.LogError(ex, Assembly.GetExecutingAssembly().GetName().Name)
End Try
End Sub