how to create dropdown backend in C# to show the list of country and add to control
brandTextBox.ID = "brand-" + li + 1;
string LastTextBoxId = brandTextBox.ID;
Literal ltrlHTML = new Literal();
ltrlHTML.Text = "<br/>Brand Name:";
Brandlisting.Controls.Add(ltrlHTML);
Brandlisting.Controls.Add(brandTextBox);
Brandlisting.Controls.Add(ltrlHTML);
for each row add textbox to add brand and country dropdown menu to select.
Go to the complete details ...