DCSIMG
Asp.Net - Maor's Blog

Browse by Tags

AppFabric, Identity, Dallas Announced at PDC 09
Here are the headlines from yesterday’s announcements at Professional Developers Conference (PDC09). Windows Identity Foundation, ASP.NET MVC Beta 2 Supported on Windows Azure Windows Server virtual machine support on Windows Azure, RTM of Windows Identity...
ASP.NET 3.5 Extensions Preview Released
The ASP.NET 3.5 Extensions Preview is a preview of new functionality being added to ASP.NET 3.5 and ADO.NET. The release includes an ASP.NET MVC, ASP.NET Dynamic Data, Silverlight controls for ASP.NET, ADO.NET Data Services, Entity Framework runtime, and new features for ASP.NET AJAX. Download ASP.NET 3.5 Extensions (includes MVC) Download here the Toolkit HTML helpers pages: ASP.NET MVC Preview: Using The MVC UI Helpers How to Unit Testing with MVC: TDD and Dependency Injection with ASP.NET MVC
MVC vs MVP
MVC or MVP? You've probably heard about Microsoft's new ASP.NET MVC Framework . MVC methodology divides an application's implementation into three component roles: Models Views Controllers. MVP approach divides an application's implementation into: Model View Presenter What is the difference between the  MVC and MVP patterns?  Todd Snyder has an excellent explanation . This is summary by the key differences between the two patterns: MVP MVC View is more loosely coupled to...
Free Web.Config Editor
Nice tool which helps a lot in editing Web.Config and Application.Config files published at Microsoft Public Sector Developer and Platform Evangelism Team Blog . You can download it from: http://asphere.aspweb.cz/default.aspx Technorati Tags: Asp.NET
ASP.NET 2.0 - Web Site vs Web Application project
This post was migrated. You can read it at http://blog.maordavid.com/2007/06/aspnet-20-web-site-vs-web-application-project/   A common question by asp.net developers is what project model should I use for asp.net application? Web Site project (which introduced with VS 2005) or Web Application project (which delivered as add-in for VS 2005 and built-in within VS 2005 SP1)? There is no thumb rule. Every project model has it's own advantages (and diss-advantages off course...). I hope this...
Free Download: Refactor!™ for ASP.NET
Refactor! for ASP.NET version 2.2 by Developer Express is freely available to all ASP.NET 2.0 developers. This release includes refactorings dedicated to ASP.NET development. Great tool!
Silverlight introduction
At Mix07 , Microsoft announced Silverlight. Microsoft Silverlight is a cross-browser, cross-platform plug-in for delivering the next generation of .NET based media experiences and rich interactive applications for the Web. You can read more here (SilverLight site), its amazing! Great post about Silverlight UI Controls, by Ashish Shetty, you can find here . Slides and demos you can download from Nikhil Kothari's Weblog . Enjoy!
How to: Calling Web Services methods from Client Script in ASP.NET AJAX
My previos post explained the way to expose a web service to client script in Ajax. This post will introduce the "How to" call the web service's method from the client script. Our web service is: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 namespace MySamples.BL { [WebService(Namespace = "http://tempuri.org/" )] [ScriptService] public class MyWebService : System.Web.Services.WebService { [WebMethod] public string PrintString(String input) { return input; } [WebMethod] public string SayHello() {...
How to: Expose Web Services to Client Script in AJAX
AJAX enables you to call ASP.NET Web services by using client script. There are several steps to enable the web service exposing. 1. Qualify the Web service class with the ScriptServiceAttribute attribute: 1 2 3 4 5 6 7 8 9 [ScriptService] public class MyWebService : System.Web.Services.WebService { [WebMethod] public string PrintString(String input) { return input; } } 2. Configure the Web application to support calling Web services from script. Register the ScriptHandlerFactory HTTP handler in...

Search

Go

This Blog

News

    RSS

     

    Connect with Me

    Maor's Facebook profile  Follow Maor on Twitter  Maor's profile on Linkedin  Maor in FriendFeed 
           

Syndication