Posts by amws • 63 points
3 posts
-
0
votes1
answer1006
viewsQ: Session variables in ASP.Net
I have an AJAX method that sends me a certain value, when requested, for a session variable (a list of strings in this case). Session variable private static List<string> ListData { get{return…
-
4
votes2
answers2986
viewsQ: Select a table that simulates a tree
I have a table that simulates a tree. For example: DECLARE @t TABLE(id int,parentId int,name varchar(max)); insert @t select 1, 0 ,'Category1' insert @t select 2, 0, 'Category2' insert @t select 3,…
sql-serverasked amws 63 -
2
votes1
answer546
viewsQ: Draw a polygon freely using Fabric.js
I’m using this code to try to draw a polygon freely: http://jsfiddle.net/e5Xth/3/ canvas.on('mouse:move', function (options) { if (lines[0] !== null && drawingObject.type == "roof") {…
javascriptasked amws 63