Browse by Tags
All Tags »
Javascript »
ASP.NET (
RSS)
aspConf Slide Deck and Demos Yesterday, I was supposed to deliver a session about “Working with Client-Side HTML5 Storages” in the aspConf conference. Because of technical issues (audio problems), I was unable to perform the session live and the live session was canceled. I’ve just finished recording the session offline and it will be sent to the conference organizers ASAP so you will be able to see it. I want to thank all the attendees who were online and apologize for the inconvenient. As always...
Avoiding Circular Reference for Entity in JSON Serialization One problem that I was facing yesterday while working on an ASP.NET MVC application was a JSON serialization issue. The problem was a circular reference caused by the DataContractJsonSerializer because of relations between the entity and other entities. In this post I’ll show you how you can use a simple workaround in order to avoid the problem. The JSON Serialization Error Returning the output of the JSON method in an...
MIX11 Second Day Sessions Summary Here is a summary of the sessions I attended in the second day of MIX11: An Overview of the MS Web Stack of Love In the session Scott Hanselman showed a lot of demos in the Microsoft web platform. The things that Scott showed: ASP.NET MVC 3 + new tools Scaffolding IIS Express NuGet EF4.1 Glimpse – a new open source package which is FireBug like tool for MVC framework. Get the insight of the flow of your MVC application. Knockout.js: Helping you build dynamic JavaScript...
Invoking Javascript From a WebBrowser Control Today I got a request to use A WebForms application inside a WinForms application. One problem that we needed to solve was how to make an interaction between the WinForm and the WebForm it uses. The post will show the solution. Invoking Javascript From a WebBrowser Control When you want to use a WebForm within a WinForms application you should use the WebBrowser control. Taken from MSDN the WebBrowser control “Enables the user to navigate Web pages inside...