-
|
We just published our roadmap for ASP.NET Ajax . In this document we describe some of the proposed features that we are considering investing in future releases of ASP.NET AJAX, Visual Web Developer, and the ASP.NET AJAX Control Toolkit. We really appreciate your feedback, so this document is intended as much for you to provide an input to our direction as well as to give some indication of what the teams are investing in. http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=14924 Read More...
|
-
|
Yesterday I added a progress bar to my ASP.NET page for downloading YouTube videos. There was no visual indication that the download was taking place because the page just appeared to be taking a long time to load. I would have to open the download file location to verify that something was being downloaded. Fortunately the WebClient class does have a DownloadProgressChanged method which will return the percentage of the download that has been completed. So it was just a matter of displaying that information in the ASP.NET page. First I moved the code for performing the download to a web service. That made more sense than using an asynchronous task initiated in the code behind for the page. The web service has a method for passing in the download...
|
-
|
An example of one way of using ASP.NET AJAX and jQuery to implement client-side Repeater functionality. Using this technique on one of my own sites, I realized an over 400% performance gain. Read More...
|
-
|
In this tip, Stephen Walther convinces you that JavaScript Injection attacks are much more serious than you might think. I show you how to do very evil things with an ASP.NET MVC website using a JavaScript Injection attack and then I explain an easy way to prevent this type of attack. ...( read more ) Read More...
|
-
|
.NET Dynamic Compilation How is my C# code converted into machine instructions Becoming a Jedi - Part 3 of N - ReSharper's refactoring capabilities autoConfig=”false” effects C# Coding Practicies Guide C# (.NET) Interface for 7-Zip Archive DLLs Web Preloading Images with jQuery Other Separation of Concerns by example: Part 1 Read More...
|
-
|
.NET OpenCSV# Explorer - A Visual Studio 2005 add-in which interacts with Windows Explorer Visual Studio 2008 - More control over Recent Projects list in Start Page PInvoke Interop Assistant Separation of Concerns - how not to do it The Performance of Everyday Things Ninject 1.0 Goes Gold .NET Runtime Embedding Web Here we go again: Improving Application performance over WAN Javascript Tutorial - Radial Menus Part 1 Read More...
|
-
|
I wrote a short column in Dino Esposito 's latest MSDN Magazine article to introduce two new features that we will ship with the next version of ASP.NET Ajax . The features will enable you to declaratively instantiate client-side components and to build data-driven HTML from simple templates. http://msdn.microsoft.com/en-us/magazine/cc546561.aspx Read More...
|
-
|
Miljan from ComponentArt announces the 2008 release of their charting engine . It's a really interesting engine for Ajax developers because it has a full client-side object model . Check it out. http://www.componentart.com/charting/gallery/ Read More...
|
-
|
Debug ASP.NET Case Study: Deadlock waiting in GetToSTA SQLServer SQL Server Scale Out SQL Code Layout and Beautification Web 15 Tools to Help You Develop Faster Web Pages Ionics Isapi Rewrite Filter - 1.2.14 Step by Step: Kerberos in NLB with Shared Content YUI Compressor for .Net .NET XSLTs to Assembly using XSLTC and ILMerge Assembly Manipulation and C#/VB.NET Code Injection .NET Regular Expressions Find and Replace Add-In for VS2005 Read More...
|
-
|
ASP.NET Ajax 3.5 SP1 contains a new feature that enables the application developer to combine scripts in order to reduce the number of downloaded files . But in order to do that, the developer must have a way of discovering what scripts are being used in a page or application. To make that easier, I've developed a small control that you can drop onto a page and that will render out the list of script references that are being used by the page. It is then easy to copy and paste that list into the CombinedScripts property of the script manager and combine all those references into one. The control also renders two links that enable the developer to download the debug and release versions of the combined scripts. Those scripts can be downloaded...
|