SharePoint - Navigation menu is way to integrated with the core scripting libraries to make it a fully, configurable playground.
July 04, 2012
Welcome to oblivion
SharePoint - Navigation menu is way to integrated with the core scripting libraries to make it a fully, configurable playground.
July 04, 2012
Use JQuery and SharePoint to build rich online interactions that will provide enhanced usability as you scale. Use codeplex for examples.
July 01, 2012
Windows 8 - has so far been a treat. There are a few exceptions but, overall a pleasant experience that can only get better.
July 01, 2012
Got Featured Skin @ http://t.co/zXeXGb4p check it out.
June 21, 2012
Wonderful it is a bout time that you did this MSFT. http://t.co/11z9m12X
June 19, 2012
Create The SQL Table {tblTree}:
ID {Unique ID Identity Seed}
ParentID {bigint}
Name{varchar(50)}
Create Stored Procedure {spGenerateTree}
CREATE PROCEDURE spGenerateTree
@lookupid bigint
AS
BEGIN
WITH CTE(name, id, parentid) AS
(
SELECT name, childid, parentid from tblTree where id=@lookupid
UNION ALL
SELECT tree.name, tree.id, tree.parentid
from tblTree tree
INNER JOIN CTE c ON tree.ID = c.parentid
)
SELECT * FROM CTE
END
Populate tblTree with your Tree Data and voila at execution of the PROC you will have a nested iHierarchal Dataset directly from SQL that you can use in your C# ASP.NET Page.
My Thoughts: I've been trying to use C# to communicate with AS400; its not as clean as I'd like. In fact just doing SQL Linked is better.
June 16, 2012
Just relaxing. It today I have been building an as400 wrapper in c# that will receive the data and should be much faster than linked SQL.
June 16, 2012