caught-in-a-web.blogspot.com
Rotem Bloom: Caught In A Web: November 2007
http://caught-in-a-web.blogspot.com/2007_11_01_archive.html
Caught In A Web. Share knowledge on web development like: ASP.NET, AJAX, Web 2.0, JavaScript, CSS, HTML, JSON, XML and more. Sunday, November 4, 2007. Stored Procs performance are better then Dynamic SQL. Is it A myth? People still thinks Stored Procedures are faster, even if there is much evidence that shows otherwise. Andres Aguiar's wrote is his blog that: "Fortunately, when they go and ask the LinQ for SQL/Entities team they get the same answer than they get from me. They are not. 1 Stored Procedures...
caught-in-a-web.blogspot.com
Rotem Bloom: Caught In A Web: July 2007
http://caught-in-a-web.blogspot.com/2007_07_01_archive.html
Caught In A Web. Share knowledge on web development like: ASP.NET, AJAX, Web 2.0, JavaScript, CSS, HTML, JSON, XML and more. Tuesday, July 17, 2007. Kevin Miller wrote nice accordion component that use protoype.js. The component work both ways horizontal and vertical. Information can be found on the link below:. Links to this post. Wednesday, July 11, 2007. Tooltip effect using Script.aculo.us. Nick Stakenburg has written a nice simple tooltip built on Script.aculo.us called Effect.Tooltip. There was a p...
caught-in-a-web.blogspot.com
Rotem Bloom: Caught In A Web: June 2007
http://caught-in-a-web.blogspot.com/2007_06_01_archive.html
Caught In A Web. Share knowledge on web development like: ASP.NET, AJAX, Web 2.0, JavaScript, CSS, HTML, JSON, XML and more. Sunday, June 24, 2007. DP Debug JavaScript Debugging Extensions. Jim Davis has released a simple little JavaScript dumping library, DP Debug. That supports circular and recursive references, most system objects and specifies certain otherwise ambiguous conditions. Full information can be found:. Links to this post. Subscribe to: Posts (Atom). View my complete profile. How to overco...
caught-in-a-web.blogspot.com
Rotem Bloom: Caught In A Web: April 2007
http://caught-in-a-web.blogspot.com/2007_04_01_archive.html
Caught In A Web. Share knowledge on web development like: ASP.NET, AJAX, Web 2.0, JavaScript, CSS, HTML, JSON, XML and more. Thursday, April 26, 2007. Validators inside UpdatePanel won't work as expected. If you work with controls such as .NET Validators placed inside an UpdatePanel you probably know they won't work as expected. Until Microsoft will solve this issue you can use the "ASP.NET AJAX Validators" that can be download from here:. More information on asp.net forums. I hope it helps :-). Specific...
caught-in-a-web.blogspot.com
Rotem Bloom: Caught In A Web: Assembly Information work under .NET 2.0
http://caught-in-a-web.blogspot.com/2008/06/assembly-information-work-under-net-20.html
Caught In A Web. Share knowledge on web development like: ASP.NET, AJAX, Web 2.0, JavaScript, CSS, HTML, JSON, XML and more. Wednesday, June 18, 2008. Assembly Information work under .NET 2.0. The Assembly Information tool is now also work under .NET 2.0. You can download the setup from codeplex on the link below:. Assembly Information work under .NET 2.0. Display assembly compilation mode. I was glad to see my blog on your favorite list :). Can you please contact me, I couldn't find your email address.
caught-in-a-web.blogspot.com
Rotem Bloom: Caught In A Web: August 2007
http://caught-in-a-web.blogspot.com/2007_08_01_archive.html
Caught In A Web. Share knowledge on web development like: ASP.NET, AJAX, Web 2.0, JavaScript, CSS, HTML, JSON, XML and more. Tuesday, August 7, 2007. JavaScript Image effect library. Christian Effenberger wrote nice JavaScript library that let you apply an image mask (in the form of another image) to any image via unobtrusive CSS. You can take a peek:. Http:/ www.netzgesta.de/corner/. Links to this post. Subscribe to: Posts (Atom). View my complete profile. Display assembly compilation mode. David Hayden...
caught-in-a-web.blogspot.com
Rotem Bloom: Caught In A Web: May 2008
http://caught-in-a-web.blogspot.com/2008_05_01_archive.html
Caught In A Web. Share knowledge on web development like: ASP.NET, AJAX, Web 2.0, JavaScript, CSS, HTML, JSON, XML and more. Monday, May 12, 2008. Svcutil with /r does not work for MessageContract. I was trying to generate WCF proxy (Client) using svcutil.exe from Visual Studio 2008. I also need to use the /r parameter of the svcutil.exe so the generated proxy code will not include the objetcs from my other internal assemblies. The command I use is something like:. Links to this post. Monday, May 5, 2008.
caught-in-a-web.blogspot.com
Rotem Bloom: Caught In A Web: Best Practices: How to Dispose WCF clients
http://caught-in-a-web.blogspot.com/2008/05/best-practices-how-to-dispose-wcf.html
Caught In A Web. Share knowledge on web development like: ASP.NET, AJAX, Web 2.0, JavaScript, CSS, HTML, JSON, XML and more. Monday, May 5, 2008. Best Practices: How to Dispose WCF clients. Use of the using statement (Using in Visual Basic) is not recommended for Dispose WCF clients. This is because the end of the using statement can cause exceptions that can mask other exceptions you may need to know about. Using (CalculatorClient client = new CalculatorClient(). The correct way to do it is:. Not So Sma...
caught-in-a-web.blogspot.com
Rotem Bloom: Caught In A Web: April 2008
http://caught-in-a-web.blogspot.com/2008_04_01_archive.html
Caught In A Web. Share knowledge on web development like: ASP.NET, AJAX, Web 2.0, JavaScript, CSS, HTML, JSON, XML and more. Thursday, April 17, 2008. How to add custom http header in WCF. If you want to add custom http header web service calls, there is a simple way to do it in WCF. Here is the code:. Using (Service1Client client = new Service1Client(). Using (OperationContextScope scope = new OperationContextScope(client.InnerChannel). Links to this post. Tuesday, April 15, 2008. A reader-writer lock a...