Problem in drop down list binding.
Hi All, I am ASP.NET developer and build application in .net4.5 version. Issue is in page have three dropdown two dropdown bind but one drop down not bind. If I recycle application pool then its works. But after some time same issue remains. Since this application was working from 4 year, now suddenly from couple of days back we are facing above mentioned issue.

Nimit GuptaPosted Apr 27, 2018, 5:21 AM
If Not IsPostBack Then
FillService()
End If
Catch ex As Exception
//Exception code
End Try
Dim objService As Service
Try
ddlService.DataSource = List(rblServiceType.SelectedValue)
ddlService.DataTextField = "servicename"
ddlService.DataValueField = "serviceid"
ddlService.DataBind()
ddlService.Items.Insert(0, (New ListItem("--Select--", "0")))
Catch ex As Exception
Throw ex
End Try
End Sub
Rajkiran SwainPosted Apr 27, 2018, 4:50 AM