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.

Était-ce utile?

La 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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top