I Put The Download Link in jqgrid, my Files are Stored on server not in database, files are of different types(extension) i want user should download file when he clicks on download link
Code For Loading jqgrid is as Follws
public object GetJSONFormatProjectDetails(List<ProjectMasterDTO> listProjectDTO, int SkipCount)
    {
        var data = (listProjectDTO.Select(c => new
        {
            id = c.ProjectID,
            cell = new[]
                        {
                            c.ProjectName,
                            c.OfficeName,
                            c.ProjectType,
                            c.ProjectNature,
                            c.EntrepreneurName,
                            c.Year + " Years " +c.Month  + " Months " + c.Day + " Days" ,
                            c.ConcessionWEFdate,
                            c.ProjectStartDate,
                            c.ProjectEndDate,
                            c.isRoadApplicable,
                            (c.FilePath != "NA" ) ? "<a href='#' style='color:green' onclick='DownLoadFile(\""+URLEncrypt.EncryptParameters(new string[]{ "filepath =" +c.FilePath.Replace("/","$").Replace(" ","#").Trim()})+"\");return false;'>"+(c.FilePath != "NA" ? "DownLoad":"Not Available") + " </a>" : "<span style='color:Red' >Not Available</span>"
                        }
        })).ToArray().Skip(SkipCount);
        return data;
    }
JS File Code is As Follows
function DownLoadFile(param) {
$.ajax({
url: "/Home/GetFile?parameter=" + param,
    cache: false,
    type: "POST",
    async: false
});
}
Code in Controller as follows
  public ActionResult GetFile(string parameter)
    {
        string queryStringParameters = Request.QueryString["parameter"];
        if (queryStringParameters == null)
        {
            throw new Exception("Url is tampered");
        }
        string[] parameterArray = queryStringParameters.Split('/');
        string param = null;
        string hash = null;
        string key = null;
        if (parameterArray.Length == 3)
        {
            param = parameterArray[0];
            hash = parameterArray[1];
            key = parameterArray[2];
        }
        if (!(string.IsNullOrEmpty(parameter)))
        {
            Dictionary<string, string> parameters = URLEncrypt.DecryptParameters(new string[] { param, hash, key });
            string FilePath =string.Empty ;
            parameters.TryGetValue("filepath", out FilePath);
            FilePath = FilePath.Replace('$','\\');
            // DownloadFile(FilePath);
            string name = Path.GetFileName(FilePath);
            string ext = Path.GetExtension(FilePath);
            string type = "";
            // set known types based on file extension  
            if (ext != null)
            {
                switch (ext.ToLower())
                {
                    case ".pdf":
                        type = "Application/pdf";
                        break;
                    case ".doc":
                    case ".docx":
                        type = "Application/msword";
                        break;
                    case ".jpg":
                    case ".bmp":
                    case ".tiff":
                    case ".png":
                    case ".gif":
                    case ".jpeg":
                        type = "Application/Image";
                        break;
                    default:
                        type = "Application";
                        break;
                }
            }
            Response.AppendHeader("content-disposition", "attachment; filename=" + name);
            if (type != "")
            {
                Response.ContentType = type;
            }
            String FullFilePath = @"F:\MHTOLL\ContractUploadDetails\" + name;
            //return File(new FileStream(path + fileName, FileMode.Open), "text/plain", fileName);
          //  return File(new FileStream(FullFilePath, FileMode.Open), type, name);
            return File(FullFilePath, type,name);
        }
        return null;
    }
Dont mind now about return null and exception handling
also suggest for displaying .gif animation for downloading file.
 
     
     
     
    