Microsoft ASP .NET
Microsoft: http://aspnet.codeplex.com/releases/view/40584
Google: http://code.google.com/p/minify/ ; http://code.google.com/closure/
Some online ones that takes a block of javascript:
http://jscompress.com/
http://www.minifyjavascript.com/
Not much experience with these products yet.
Free: http://developer.nvidia.com/object/nsight.html
Not free: http://software.intel.com/en-us/articles/intel-parallel-studio-purchase/
For SSIS, this looks very interesting:
http://extendedssispkgexec.codeplex.com/
If you need to use JavaScript to do a Check All on all the checkboxes in the column, be sure to use this guy's code: http://www.highoncoding.com... If your code simply change the state (...checked == true), it does not get registered and does not get passed into the code behind. Instead, follow AzamSharp's article and make sure you initiate a click() event ......
I recently ran into a business problem that I can't find any sample code online. I think I worked out a tolerable solution. The business scenario is this: All rows retrieve from the database must be in edit mode, but only some fields should be in edit mode, not all. Editing one row at a time is out of the question. User might make changes and THEN want to sort the grid. Any user input needs to be preserved. Have to use .NET control that come out of the box with Visual Studio due to maintenance concerns. ......
I may not be a lawyer, but definition and how to properly excute a plan are very important to me.
When you create a website and want to store something in a Config file, simply calling your class "ConfigFile" is NOT the way to do it. This web projectI am looking at is so far down the wrong path that it needs a rebuild.
Man, I feel angry that this is the first time I heard of this site:
http://www.asp.net/community/control-gallery/
Business Scenario: The client wants to build a few reports (only in HTML format) that basically have the same format, but needs paging when the report is sent to the printer. Solution: I built the report inside a user control to reuse the formatting, but had to solve the problem where hard-coding the page break at the UI side will give me an extra page in printing. Code: Inside ASCX: <%# InsertPageBreakIfNotLastPag... "ItemIndex")) %> Code behind (C #): public string ......