IHateSpaghetti {code}

VSX, DSL and Beyond by Eyal Lantzman

Syndication

Coding / Architecture

Extensibility /DSL

Projects

Articles

Browse by Tags

All Tags » ASP.NET (RSS)
"How do I" – IE8 videos
Collection of How do I videos for IE8, recommended for all of you web devs.   AJAX Navigation Selectors API Native JSON Box-Sizing & Vertical Text getElementById DOM Storage getAttribute & setAttribute Cross Document Messaging (xdm) Cross Domain Requests (xdr) Internet Explorer 8 Meta Tag JavaScript Profiler

Posted by Eyal | with no comments

Blog Carnival #12
Been a bit tide up the last couple of weeks but never the less I would like to start the new year with a new post - Blog Carnival #12 DSL Tools & Team Architect & T4 Stuart Kent posted about our move back to Team Architect and what are the goals for the future VSTA, the enterprise architect and the application lifecycle by Clemens Reijnen The VSTA Layer Diagram and the P^P App Arch Guide 2.0 by Clemens Reijnen Getting App Arch Guid Knowledge in VSTS2010 –Create Diagrams from Code by Clemens...

Posted by Eyal | 1 comment(s)

Sculpture - Model-Driven Development code generation framework
There is an interesting open source project in codeplex that is based on DSL Tools, I saw just the videos but it looks promising. Here's the projects summery and pictures Sculpture is a .NET open source Model-Driven Development code generation framework ideal for creating and managing .NET Enterprise Applications. With Sculpture you can model your application components, and then transform this model to deployable components with your favorite technology. Sculpture comes with a host of ready...

Posted by Eyal | with no comments

Blog Carnival #11
This week in the blog carnival modeling, T4, C# 4.0, framework desing, SOA, performance and ASP.NET related links. Modeling and UML DSL Tools and Oslo by Stuart Kent UML Syntax and Semantics by Steve Cook T4 Using extension methods in T4 templates by Gareth Jones C# 4.0 C# 4.0 - Named and Optional Parameters - Behind the Scenes by Matthew Podwysocki Framework design PDC 2008 Talk: Framework Design Guidelines Framework Design Guidelines Videos ASP.NET/ASP.NET MVC /WPF /SIlverlight ScottGu has post...

Posted by Eyal | with no comments

Blog Carnival #10
Lot's of good stuff today but first here's the new .NET logo and VS2010 & .NET CLR CTP ! Extensibility How to extend Visual Studio and become a more productive developer Domain-Specific Development with Visual Studio DSL Tools Advanced code generation patterns with T4 & DSL Tools Another collection of T4 resources Oslo New site @ http://msdn.microsoft.com/oslo ASP.NET Building a Great ASP.NET AJAX Application from Scratch Using jQuery to display a modal ASP.NET UpdatePanel confirmation...

Posted by Eyal | with no comments

Blog Carnival #9
Alot interesting posts this week - I collected the ones that I liked (and read their blog) the most. Hope you'll enjoy this weekend reading. DSL Tools / T4 /Modeling T4 (Text Template Transformation Toolkit) Code Generation - Best Kept Visual Studio Secret - by Scott Hanselman informIT video interview on DSL Tools with Ted Neward and Gareth Jones Class Diagrams - by Steve Cook Extension Methods If the .Net BCL is drywall, Extension Methods are spackle by Jeremy D. Miller Emulating Java Enums...

Posted by Eyal | 1 comment(s)

Blog Carnival #7
This blog carnival will be entirely dedicated to web development in MS platform. Scott has published a whole list of links in his blog ASP.NET · Amazon EC2 Support for Windows and ASP.NET: Big news announced this week: Amazon will be offering Windows Server 2008 as an option in their EC2 service. This enables you to use ASP.NET, IIS7 and SQL Server in the cloud. · Using ASP.NET WebForms, MVC and Dynamic Data in a Single Application : Scott Hanselman has a nice post that demonstrates how you can have...

Posted by Eyal | with no comments

Blog Carnival #5
After a couple of weeks of crappy Internet connections I finally managed to connect via my cell phone (still crappy though). Visual Studio Extensibility Localized VS Shell (w/ SP1) Download Links T4 Editor - Clarius' T4 Editor ships V1.0 DSL DSL Questions and answers by Martin Fowler ASP.NET jQuery and Microsoft Algorithms Back To Basics: Algorithms and Going Back To Virtual School Functional programming The Weekly Source Code 34 - The Rise of F# Object Oriented F# - Extension Everything Side...

Posted by Eyal | 1 comment(s)

Blog Carnival #3
Visual Studio Extensibility/ DSL Tools How to open files from the Output window - by Pablo How do I obtain an IVsHierarchy itemid - by Pablo How do I deal with the Visual Studio status bar - by Pablo ASP.NET MVC Scott has an excellent post on all the new bits in form posting scenarios The basics of ASP.NET MVC routes by Jeff Palermo IIS Prevent IIS from Binding to all Assigned IP Addresses ESB Building Our Own ESB - Publish / Subscribe Architecture / Software Design Composite Application Guidance...

Posted by Eyal | with no comments

Blog Carnival #2
ASP.NET A solution for the partial rendering issue: CS1502: The best overloaded method match for 'System.IO.TextWriter.Write(char)' has some invalid arguments error The correct code would be: <% Html.RenderPartial("somecontrol.ascx", SomeDataEntity ) %> Read all about it Visual Studio Extensibility LearnVSXNow - updated wiki Extensible Framework Design Studio Released - download Architecture / Software design Revisiting the onion F# F# Community Technical Preview (CTP) Release...

Posted by Eyal | with no comments

Blog Carnival #1
I've decided to collect interesting posts on various topics and when reach critical mass publish them in a single post. Visual Studio Extensibility and DSL Tools How do I know when a model element is being added by a user demand How do I know if the solution is still building How do I get the Visual Studio command line switches How do I obtain a project GUID How do I get a Project from a IVsHierarchy and viceversa How do I cancel a model element property value editing operation Refactoring Udi...

Posted by Eyal | with no comments

RPG Pattern using ASP.NET MVC
Tim posted a great post and in that post he implements the PRG pattern (it's basically a way to overcome the annoying "...resend data..." message box)

Posted by Eyal | 1 comment(s)

Better thumbnail quality with less size – see how
I found very cool post that show how to obtain quality and better compression with a little tuning and less automation. here's the code: System.Drawing.Image myThumbnail = CreateThumbnail(myBitmap,Width,Height,false); //Configure JPEG Compression Engine System.Drawing.Imaging.EncoderParameters encoderParams = new System.Drawing.Imaging.EncoderParameters(); long[] quality = new long[1]; quality[0] = 75; System.Drawing.Imaging.EncoderParameter encoderParam = new System.Drawing.Imaging.EncoderParameter...

Posted by Eyal | with no comments

Losing sessions? AppDomain restarts? Here's the solution
Some web developers don't aware that some anti viruses by scanning the web.config file (or other asp.net watched files) initiates AppDomain restarts and as a result the performance problems (cache is reset as well, naturally), various crashes and "unexplained" behavior. The solution is simple – exclude asp.net hosted directory from the AV scans, however in order to detect this issue or analyze the severity and recurrence of the problem you'll need to write some very neat code –...

Posted by Eyal | 1 comment(s)