Reg: To help for Asp.net
-
Already i have created live application for online exam but some problems my exam category is three type when i select dropdown exammode category so this related exam questions display there are three types of category.. 1..MCQ 2..fill in the blanks.. 3..true/false.. so please help me..
-
Already i have created live application for online exam but some problems my exam category is three type when i select dropdown exammode category so this related exam questions display there are three types of category.. 1..MCQ 2..fill in the blanks.. 3..true/false.. so please help me..
How can we help with this information :( .The Question is not clear.You mentioned some problem exist but you are not describing anything Get the Selected value of dropdown in
SelectedIndexchanged
Event and display it.To learn all there is to know. I know I'll be disappointed one day, but I've made a good start, and the eventual disappointment is likely to be brief. -Roger Wright
-
Already i have created live application for online exam but some problems my exam category is three type when i select dropdown exammode category so this related exam questions display there are three types of category.. 1..MCQ 2..fill in the blanks.. 3..true/false.. so please help me..
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 ;) ;)