B M SOLUTION
  • Constant dropdownlist

      public static List<ListItem> Category         {             get             {                 List<ListItem> items = new List...

    READ MORE
  • Sql Query if count is null then use this query

     select ISNULL(COUNT(*),0) as counts   FROM [master].[dbo].[deed_mas]

    READ MORE
  • how to hide Mobile No formula in Crystal Report

       Formula =   "XXXXXXX"+RIGHT({tblCustomer.MobileNo},3) Example - XXXXXXX048    Formula =   mid({tblCustomer.MobileNo},4,5,)    F...

    READ MORE
  • Image Direct Download from Server URL Path in binary mvc c#

     create PROCEDURE [dbo].[usp_ImportImage] --  '1'  (      @PicName NVARCHAR (100) --1001    ) AS BEGIN  declare @ImageFolderPath NVA...

    READ MORE
  • How to use Html Table Searching , Pagination

     demo.html  <!DOCTYPE html> <html> <head>     <meta charset="utf-8" />     <title></title>    ...

    READ MORE