For fixing this issue just follow simple steps below: 1. Open jquery.elevatezoom.js file in notepad. 2. Now you will see code below: (function( $, window, document, undefined ) { var ElevateZoom = { init: function( options, elem ) { var self = this;
This lecture is on complex query SQL server, topic covered are: • OUTPUT Clause • RANK(), ROW_NUMBER() and DENSE_RANK() Function • Query Optimization and Use of execution plan.
Click Here to see full article and download sql script
ASP.NET Dynamic Data is used to create data-driven web applications with minimal coding. ASP.NET Dynamic Data have the advantage of using all capabilities of the Dynamic Data Framework. You can also add specific capabilities of Dynamic Data to an existing Web application, such as:
Web scaffolding, which is a mechanism to enhance the existing ASP.NET page Framework by dynamically display webpages based on the data model. Web scaffolding involves running a Web Application by reading the underlying database schema. Dynamic Data Scaffolding can generate a standard user interface(UI) from the data model.
Full access to data operations (such as CREATE, DELETE, UPDATE, REMOVE and DISPLAY), relational operations, and data validation.
Support for foreign-key relationships that allows Dynamic Data to detect the relationships among tabl
... Read more »
XSLT is very simple but powerful way to handle dynamic transform. In
this example i have used XML datasource and XSLT file for generating
dynamic nested menu. The menu source is an SQL server database. The
script for generating SQL table is also provided with
solution.
HTML from XML file source is generated, but you can use dataset to generate HTML from database by generating XML using dataset. In this example i have used XSLT file to transform XML to HTML file.
----Basic but important functions --ROW_NUMBER() --RANK() --DENSE_RANK() --NTILE()
--ROW_NUMBER() --Returns a sequential row number with in partition of result set use Northwind; SELECT ROW_NUMBER() over(order by productid) as [Row No.], ProductName from Products;
----Getting alternate rows ------Odd Row select * from (SELECT ROW_NUMBER() over(order by productid) as [Row No.], ProductName from Products) p where p.[Row No.]%2=1; ------Even Row select * from (SELECT ROW_NUMBER() over(order by productid) as [Row No.], ProductName from Products) p where p.[Row No.]%2=0; ------Row Between select * from (SELECT ROW_NUMBER() over(order by productid) as [Row No.], ProductName from Products) p where p.[Row No.] Between 5 and
... Read more »