Question

I need to insert Cyrillic text into a SQL Server database. I'm using MVC 4, and the controller code is:

    public ActionResult AddCategory(Ferro_Balkan.Models.category Cat)
    {
        Ferro_Balkan.Models.ferroEntities ent = new Ferro_Balkan.Models.ferroEntities();

        if (ModelState.IsValid)
        {
            ent.Categoriis.Add(Cat);
            ent.SaveChanges();
            return RedirectToAction("AdminCategory", "Admin");
        }

        return View(Cat);
    }

I don't know how to insert Cyrillic text... I need a solution that works within the code listed.

Was it helpful?

Solution

You need to verify that charset of the page submitting Cyrillic value(Cat) to you is set to UTF-8. If it is then you should not have any problem.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top