fill dropdown list by querystring
- by KareemSaad
I had drop down list and I want to fill it with data by specific condition
i used this code but it was,t worked well
<cs>
protected void Page_Load(object sender, EventArgs e)
{
Page.Title = "ThumbnailViewPage";
if (Request.QueryString["Category_Id"] != null)
{
using (SqlConnection Con =…