Author: Manish Kumar

Streaming video in web application

Recently one of our flash developer raised an concern that when he has uploaded a video (.mp4) it is not working properly means not buffering. It start playing only after successful loading of full video which is not right and it should load and play..load and play. I analyze this and found that is it…

By Manish Kumar May 12, 2017 Off

Using window.postMessage to post messages between windows & iframes

HTML5PostMessage Using postMessage, a new feature in HTML5 to securely communicate between parent and child window, to post messages between windows & iframes. The Window.postMessage() method safely enables cross-origin communication. Normally, scripts on different pages are allowed to access each other if and only if the pages that executed them are at locations with the…

By Manish Kumar May 12, 2017 Off

DML statements in SQL server functions

We can not write DML statements in SQL functions. Functions have Only READ-ONLY database access. If DML operations would be allowed in functions, then functions would be pretty similar to stored procedures. The way it is, a stored procedure can use a function, but not vice versa. Therefore, functions increase the “power” of stored procedures,…

By Manish Kumar December 23, 2015 0