Hi

I have below code & i want when clicked on Add modal popup opens & in Dropdown i want to display States of selected record in a dropdown

try
{
    StringBuilder htmlTable = new StringBuilder();
    string ParticipantType = "";

    BALTrainingHeader bALTrainingHeader = new BALTrainingHeader();
    List Result = bALTrainingHeader.GetRecordListDrafted();

    if (Result != null)
    {
        BALEmployee bALEmployee = new BALEmployee();
        htmlTable.Append("");
        htmlTable.Append("");
        htmlTable.Append("");
        foreach (var colum in Result)
        {
            htmlTable.Append("");
            htmlTable.Append("");
            htmlTable.Append("");
            htmlTable.Append("");
            htmlTable.Append("");
        }
        htmlTable.Append("");
        htmlTable.Append("
#Training NumberAdd
" + colum.TrainingID + "" + colum.TrainingNumber + "
"); PlaceHolderTable.Controls.Add(new Literal { Text = htmlTable.ToString() }); } }

Thanks