tb_QuestionType[] QTList = QuestTypeList.QuestionTypeList("QT_Isdel=0 and QT_Parentid=0 order by QT_Orderindex desc");
            int c = QTList.Length;
            for (int j = 0; j < c; j++)
            {
                typedropdown += "<option Value=\""+QTList[j].QT_ID+"\">" + QTList[j].QT_Name + "</option>\r\n";
                typedropdown += ShowQuestionType(QTList[j].QT_ID);
            }
            typedropdown = "<select ID=\"ddltype\"><option value=\"0\" selected=\"selected\">请选择问题类别</option>" + typedropdown + "</select>";
            #endregion
然后在页面显示,可是点击后怎么取值呢?