Save as json file error in internet explorer
when using asp.net mvc json result return , in internet explorer , save as json file […]
Contains in Linq with entity
Sometimes we require to use In or Not in operator in LINQ. below is the example […]
New Feature in wcf 4.5
Simplified Generated Configuration files, generated configuration file on client will only have non-default binding configuration. more… […]
Nullable Tempdata in MVC
DateTime? FromDate = TempData["FromDate"] as DateTime?; DateTime? ToDate = TempData["ToDate"] as DateTime?; int? UserIdInv = TempData["UserIdInv"] […]
Form data in jquery and json
var formData = new FormData(); formData.append("username", "Groucho"); formData.append("accountnum", 123456); // number 123456 is immediately converted to […]
Wcf calling by javascript and ajax
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Complex Type AJAX Service Client […]
Case when in where clause in sql server
In below example case when used for multiple condition in sql server USE [PCCAS] GO /****** […]
Visible Column depent on group by SSRS
=IIF((Fields!Audience.IsMissing) Or (Parameters!GroupBy.Value = "Audience"),true,false)