mercredi 23 mars 2016

Controller is returning blank View in my website

public async Task<IActionResult> Contact1()
    {
        if (Convert.ToBoolean(HttpContext.Session.GetString("login")))
        {
            var pass = new ContactViewModel();
            var username = HttpContext.Session.GetString("username");              
           Program.readname(HttpContext.Session.GetString("username"));
            var names = HttpContext.Session.GetString("studentnames");

            var obj1 = JsonConvert.DeserializeObject<Program.Data>(names);
            if (Program.datecheck(username, DateTime.Today.Date))
            {
                var handler = new HttpClientHandler { Credentials = new NetworkCredential(user, password) };
                using (var client = Program.CreateHttpClient(handler, user, database3))
                {
                    string check = username + Convert.ToString(DateTime.Today.Date);
                    var readresponse = client.GetStringAsync(check).Result;
                    var obj2 = JsonConvert.DeserializeObject<Program.Data>(readresponse);
                    pass.studentattend = obj2.studentattend1;
                }
            }
            else { ViewBag.attendance = "Attendace is not take yet"; }
            pass.studentname = obj1.studentname1;
            pass.studentrollno = obj1.studentrollno1;


            pass.date = DateTime.Today.Date;
            HttpContext.Session.SetInt32("classselect", 1);
            ViewData["Message"] = "Student Attendance of Class: " + HttpContext.Session.GetString("classname1");

            ViewBag.Login = HttpContext.Session.GetString("login");

            ViewBag.name = HttpContext.Session.GetString("name");
            ViewBag.classname1 = HttpContext.Session.GetString("classname1");
            ViewBag.classname2 = HttpContext.Session.GetString("classname2");
            ViewBag.classname3 = HttpContext.Session.GetString("classname3");
            ViewBag.classname4 = HttpContext.Session.GetString("classname4");
            return View("/Views/Home/Contact.cshtml", pass);
        }
        else
        {
            ViewData["Message"] = "Please Login First!!";
            return View("/Views/Home/Login.cshtml");
        }           
    }

The abobe code is runnig well in my local ISS server but when i run this on bluemix then i am getting blank page. I tried to find out the problem and get to the conclusion that if the control does not enter in the if part of that code:

 if (Program.datecheck(username, DateTime.Today.Date))
        {
            var handler = new HttpClientHandler { Credentials = new NetworkCredential(user, password) };
            using (var client = Program.CreateHttpClient(handler, user, database3))
            {
                string check = username + Convert.ToString(DateTime.Today.Date);
                var readresponse = client.GetStringAsync(check).Result;
                var obj2 = JsonConvert.DeserializeObject<Program.Data>(readresponse);
                pass.studentattend = obj2.studentattend1;
            }
        }
        else { ViewBag.attendance = "Attendace is not take yet"; }

then it will run fine.I am unable to find what is wrong in that query.




Aucun commentaire:

Enregistrer un commentaire