ASP/ASP.NET MVP
2008年11月19日
   

Akio's blog

<2008年11月>
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456

RSS
このブログの RSSを購読する.                
ブログの検索

(1単語のみ入力)

カテゴリー
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • RSS
  • ブログロール

     
    2008年11月18日(火)
    Back from Tech-Ed EMEA
    [ | ]

    http://weblogs.asp.net/stephenwalther/archive/2008/11/18/back-from-tech-ed-emea.aspx

    just flew back from Barcelona where I gave three talks last week at Tech-Ed EMEA. Lots of excitement, and great feedback, on all of the new Ajax features being added to the ASP.NET framework. I've included the Power Points and demo code from my presentations below.

    I just flew back from Barcelona where I gave three talks last week at Tech-Ed EMEA. Lots of excitement, and great feedback, on all of the new Ajax features being added to the ASP.NET framework. I've included the Power Points and demo code from my presentations below.

    In my first Ajax talk, I focused on several newly released features of ASP.NET AJAX including Browser History, Script Combining, jQuery integration, and the ASP.NET MVC AJAX Helpers.

    Download the Power Point

    Download the  Demo Code

    Download the Demo Code (MVC App)

    In my second Ajax talk, I discussed the new features of ASP.NET AJAX coming with ASP.NET 4.0 AJAX such as client templates and controls. These new features make it practical to build pure client-side AJAX applications with the ASP.NET framework.

    Download the Power Point

    Download the Demo Code

    Finally, I gave a talk on building high performance ASP.NET websites.

    Download the Power Point

    Download the Demo Code

    In my first Ajax talk, I focused on several newly released features of ASP.NET AJAX including Browser History, Script Combining, jQuery integration, and the ASP.NET MVC AJAX Helpers.

    Download the Power Point

    Download the  Demo Code

    Download the Demo Code (MVC App)

    In my second Ajax talk, I discussed the new features of ASP.NET AJAX coming with ASP.NET 4.0 AJAX such as client templates and controls. These new features make it practical to build pure client-side AJAX applications with the ASP.NET framework.

    Download the Power Point

    Download the Demo Code

    Finally, I gave a talk on building high performance ASP.NET websites.

    Download the Power Point

    Download the Demo Code

    posted at 04:38 午後 | |

    2008年11月17日(月)
    <microsoft:ScriptReferenceProfiler> for ScriptCombining, available at CodePlex, ASP.NET AJAX
    [ ]

    http://geekswithblogs.net/ranganh/archive/2008/11/17/ltmicrosoftscriptreferenceprofilergt-for-scriptcombining-available-at-codeplex-asp.net-ajax.aspx

    If you have seen Bertrand’s video on Script Combining to improve AJAX performance, you must have really felt like using it in your site to figure out the scripts downloaded in your page and minimizing the size, improving performance etc.,

    Well, this post is just to say that, the ScriptReferenceProfiler is available at CodePlex http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=13356

    You need to download the binaries and add it as a reference to your website/project.  Once you add the reference, you can add the page directive declaration as below:-

    posted at 06:39 午後 | |

    2008年11月17日(月)
    Enabling the Browser Back Button for GridView, ASP.NET AJAX History
    [ ]

    http://geekswithblogs.net/ranganh/archive/2008/11/17/enabling-the-browserrsquos-back-button-for-grid-view-asp.net-ajax.aspx

    One of the common navigation tools in a website is the back button of the browser.  People use the back button quite frequently to go back to the page already visited.   When there is a postback, the browser is updated with the information of the page visited and hence the back button gets enabled automatically.   Assuming there is a GridView control that we are using in a page which fetches a lot of records, one of the common practices is to enable paging for the GridView such that the initial set of records loads quicker and people can page through the next set of records on a requirement basis.

    When this GridView is in a normal ASP.NET Page, when users click on the paging buttons or links, the browser history gets updated and hence, if the users want to check the previous set of records, they can click on the back button and do the same.

    posted at 06:38 午後 | |

    2008年11月16日(日)
    Using HoverMenuExtender with ASP.NET ListView to Update, Delete and Insert Records