本文介绍了嗨,,,, frnds我正在创建在线评估我收到错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨,,,, frnds我正在创建在线评估我收到程序中缺少的错误命名空间或参考



我试过的:



 String sid,sname; 
sid = ddlSubjects.SelectedItem.Value;
sname = ddlSubjects.SelectedItem.Text;
考试考试=新考试(Int32.Parse(Session [mid]。ToString()),Int32.Parse(sid),sname);在这里我收到错误
exam.GetQuestions();
Session.Add(问题,考试);
Response.Redirect(examine.aspx);
解决方案

hi,,,, frnds i am creating the online assessment i am getting the error namespace or reference missing in the program

What I have tried:

String sid, sname;
            sid = ddlSubjects.SelectedItem.Value;
            sname = ddlSubjects.SelectedItem.Text;
            Examination exam = new Examination(Int32.Parse(Session["mid"].ToString()), Int32.Parse(sid), sname);  here i am getting the error
            exam.GetQuestions();
            Session.Add("questions", exam);
            Response.Redirect("examination.aspx");
解决方案


这篇关于嗨,,,, frnds我正在创建在线评估我收到错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 07:58