filter datagrid within month and year using hyperlink.
i want to filter contents in a table which is showing only all the informations filter only by month and years only. i need the solution ASAP because my task aint gonna complete just because of this problem. this is my HTML table form :
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If Session("CompanyId") = "8ACB0E-CDD7-4AA3-B379-1BDC1FE5CC5" Then
Response.Redirect("../Admin/Company.aspx")
End If
'Put user code to initialize the page here
Access = Common.CheckAccess(Me, Session("UserId"))
'WebForm.AddDescription(BillMonth, Common.DropDownShowMonth)
If Not IsPostBack Then
'case is send querystring mth
WebForm.BindListControl(BillMonth, GetType(Common.ParamMonth))
If Month(Now) = 1 Then
BillMonth.SelectedValue = 12
BillYear.Text = Year(Now) - 1
Else
BillMonth.SelectedValue = Month(Now) - 1
BillYear.Text = Year(Now)
End If
End If
BindList()
End Sub
2
Contributors
1
Reply
1 Month
Discussion Span
3 Months Ago
Last Updated
7
Views
Related Article:Simple ASP.Net Login Page (Using VB.Net)
is a solved ASP.NET discussion thread by Paladine that has 76 replies and was last updated 11 months ago.