Posts

Showing posts from February, 2017

Html helper bynamic table bind for DataTable and generic list model

  Html Helper with DataTable   public   static   MvcHtmlString  ToHtmlTable( this   HtmlHelper  html,  DataTable  dataTable)        {             StringBuilder  tempTableSb =  new   StringBuilder ();             if  (dataTable !=  null  && dataTable.Rows.Count > 0)            {                tempTableSb.Append( "<table class='table table - responsive table - bordered'>" );                tempTableSb.Append( "<thead><tr>" );          ...

Bind Drop Down by Enums in mvc/ asp.net

First of all you create a enum calss and define enum like FontFamily     public   static   partial   class   Enums     { public   enum   FontFamily         {              ///   < summary >              ///  The undefined              ///   </ summary >             Undefined,              ///   < summary >              ///  The courier              ///   </ summary >     ...