I am really confused with your question :doh:. What's you want?????. if you want only one Question list List like that MCQ OR Fill in the Blank or True/False. Simple Create a DropDown Event SelectedIndexChanged. i have post below a simple snippet code understand this and try again
protected void Your_DropDownName_SelectedIndexChanged(object sender, EventArgs e)
{
try
{
if(Your_DropDownName.SelectedValue=="MCQ")
{
//code of MCQ
}
else
{
// code of Fill the Blank
}
catch (Exception ex)
{
MessageBoxx(ex.Message, Page);
}
}
I hope your some doubt is clear. for more information and Query reply to hit option. Happy Coding ;) ;)