hello all ,
Here i am doing display one error Message like "politisians should not be lazy" like below. so i am getting default fore color (black)of error Message . i need red color...
default = politisians should not be lazy
need = politisians should not be lazy
try
{
IndiaAssemblies.ForEach(delegate(Indiaassembly e)
{
if (string.IsNullOrEmpty(e.politisians))
{
throw new System.DataMisalignedException("politisians should not be lazy");
}
});
}
catch (Exception ex)
{
return RedirectToAction("Indiaparlement", "INDIA", new { somex = objindia.somex.ToString(),
Revision = objindia.Revision.ToString(), errormsg = ex.Message });
}
Thanks
Hareesh