SQL Query 1) Using CASE Statement : - To Check the Particular column ISNULL CASE WHEN ISNULL ([Col_Name], ' ') = ' ' THEN 'Others' ELSE [Col_Name] END AS [Col_Name] 2) Convert Data format into VARCHAR and save 10/18/2012 this Format and also check if Date Column is Empty or not. CONVERT (VARCHAR,[Col_CreatedDt], 101) AS CreatedDt , CASE WHEN ISNULL ([Col_ModifiedDt], ' ') = ' ' THEN ' not available' ELSE CONVERT (VARCHAR, [ Col_ModifiedDt], 101) END A...
What is AngularJS? AngularJS is an open source web application framework. It was originally developed in 2009 by Misko Hevery and Adam Abrons. It is now maintained by Google. Its latest version is 1.4.3. Definition of AngularJS as put by its official documentation is as follows − AngularJS is a structural framework for dynamic web apps. It lets you use HTML as your template language and lets you extend HTML's syntax to express your application's components clearly and succinctly. Angular's data binding and dependency injection eliminate much of the code you currently have to write. And it all happens within the browser, making it an ideal partner with any server technology. Features AngularJS is a powerful JavaScript based development framework to create RICH Internet Application(RIA). AngularJS provides developers options to write client side application (using JavaScript) in a clean MVC(Model View Controller) way. Application written in AngularJS is c...
Dynamically check the Particular name Folder exist or not, it not exits create folder dynamically. if (!Directory.Exists(FolderName)) { Directory.CreateDirectory(FolderName); } if (Directory.Exists(FolderName)) { string[] filePaths = Directory.GetFiles(FolderName); foreach (string filePath in filePaths) File.Delete(filePath); //Directory.Delete(FolderName); ...
Comments
Post a Comment