Web App
Send Mail: All about
Windows Server Develop a Windows Service on SQL Server This service will check the MAIL_QUEUE table every a certain of time to send emails Mail […]
Read/ Write File/Folder
Read a file Node JS Buffering Contents with fs.readFile [js] // synchronously var fs = require(‘fs’); try { var data = fs.readFileSync(‘my-file.txt’, ‘utf8’); console.log(data); } […]
Debug techniques
Bottom To Top You go through step by step from the first step where bug hasn’t happen to the step where bug appears Pros You […]
Object Oriented Programming (OOP)
What is difference between “class” and “object”? How to create new class inheriting all functions from a existing class? Create a child class [php]class Child […]
PDF Export
Crystal Report – Working with rpt file How to display text on footer of last page only? Format Object >> Supress Formula[html]if PageNumber = TotalPageCount […]
ASP.net & Javascript
What is Ajax life cycle in ASP.NET? http://ajaxtutorials.com/general/client-side-page-life-cycle-with-updatepanel-with-javascript/ Why is Javascript affect gone after postback? Issue When clicking on a button to get selected option […]
JavaScript & jQuery: HTML DOM
How to debug JavaScript? [js]debugger[/js] Work with string How to split a string into an array? Javascript [js]var text = ‘part1||part2||part3’;var labelArr = text.split(‘||’);[/js] How […]