Je reçois une ArgumentException lorsque j'appelle l'action d'indexation d'un de mes contrôleurs et je ne sais pas pourquoi. Le message d'erreur est le suivant:
Erreur serveur dans l'application '/'
Caractères illégaux dans le chemin.
[ArgumentException: Illegal characters in path.]
System.IO.Path.CheckInvalidPathChars(String path) +126
System.IO.Path.Combine(String path1, String path2) +38
Je ne sais pas pourquoi cela se produit. voici le code du contrôleur:
public ActionResult Index()
{
var glaccounts = db.GLAccounts.ToString();
return View(glaccounts);
}