I am facing a small big problem. I have taken a dropdownList control and ID is
\"drpDownCountries
\" in ASP.Net project. The problem is that \"The dropdownlist contr
So first check that your ascx document is defined like so
ExampleClass.ascx
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="ExampleClass.ascx.cs" Inherits="ExampleClass" %>
ExampleClass.ascx.cs
public partial class ExampleClass : System.Web.UI.UserControl
{
protected void Page_Load(object sender, System.EventArgs e)
{
}
}