Search All Articles Submit your Website or Blog to A New Internet Library
Friday, January 11, 2013
Windows Azure Web Sites Vs Web Role, When to use what?
Read this to understand the capability differences and know when to use Azure Web Sites, Web Role, Mobile Services and Virtual Machines.. Choosing between Windows Azure Web Sites, Web Roles and VMs
Current Status of HTML5 Video
- Is HTML5 player supported on all platforms and browsers?
- Which video and audio codecs are supported?
- Whether HTML5 video does Progressive download or Live Streaming?
- Is HTML5 video ready to replace Flash/Silverlight player?
- Which platforms or browsers support HTML5 Video Streaming?
- HTML5 Player to work on Non iOS Devices
Checkout this comprehensive article on HTML5 video - HTML5 Video Status, Adoption and Best Practices
Friday, January 4, 2013
Highlight a keyword dynamically in any HTML document
How to highlight a word in a web page document using a simple javascript function.
Consider any sample HTML page and write a JavaScript code to do the following:
2.This function should not replace anything inside an anchor tag.
Solution:
Check out the solution here http://goo.gl/atNyB
Monday, December 24, 2012
Wednesday, October 19, 2011
SQL most efficient way to query xml nodes
Most efficient way to query nodes in XML is to use XQuery methods like .value, .nodes, .query and .exists methods
For Examples, check below articles.
http://www.dotnetthread.com/articles/8-Querying-from-XML-datatype-table-column-in-SQL-Server.aspx
How to use Variable in SQL IN Clause
DECLARE @EmpID VARCHAR(8000)
SET @EmpID = '''Emp1'',''Emp2'''
Select * from emp
where empid in(@empid) - This doesnt work...
For solution check the below URL.
http://www.dotnetthread.com/tips/25-Using-variable-in-SQL-IN-statement.aspx
Subscribe to:
Posts (Atom)
Also Read other Top Articles
- JSON Serialization in VS 2008
- Implementing Forms Authentication in Silverlight Application.
- Making GridView Rows or Individual Cells Clickable and Selectable.
- Enabling browser back button for GridView Paging and Sorting in Ajax 1.1 and 3.5 (using Visual Studio 2005/ Visual studio 2008)
- How to pass values from User Control to Page or calling Page methods from User Control.
- What is WCF?
- New features in C# 4.0
- C# to VB.NET and VB.NET to C# online free converter tools.
