Hari B

Hari B

  • NA
  • 139
  • 65.4k

need to come red color for error message c#(MVC 2)

Jan 1 2015 2:38 AM
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 

Answers (3)