Month: August 2010

  • How to get Table Cell or Text Box value in SSRS

    To get the Table Cell or Text Box value in SSRS you can do like this: ReportItems![Text Box name].Value Note: replace the [Text Box name] with the name of Text Box you want to access.

  • Umbraco: How to get Media in code-behind

    To get a media (i.e.: image)  in code-behind you can do it like this. var currentPage = umbraco.presentation.nodeFactory.Node.GetCurrent(); var media = new umbraco.cms.businesslogic.media.Media(             Convert.ToInt32(currentPage.GetProperty("[property]").Value)     ); string imageUrl = media.getProperty("umbracoFile").Value.ToString();

  • Announcement of jQuery Mobile Project

    It’s a great news that now jQuery is supporting Mobile web. Here is the official announcement: http://jquerymobile.com/2010/08/announcing-the-jquery-mobile-project/ And the project site: http://jquerymobile.com/ Less hassles in creating interactive Mobile web, I love it! 😉

  • Thoughts on Visual Studio LightSwitch

    Earlier this month (August 2010) Microsoft has introduced a new Visual Studio family member, it’s Visual Studio LightSwitch. Visual Studio LightSwitch is RAD (Rapid Application Development) tool that can be used to build WPF and Silverlight applications in an easy way. Don’t expect me to explain the features in this post, it will be too…

  • VS2010 Tips #14: How change the default browser used in debugging ASP.NET MVC 2 application

    Changing default browser used in debugging ASP.NET MVC 2 is a bit tricky in Visual Studio 2010. To use ScottGu’s steps, you will need to add new ASPX page first. But unfortunately if you delete the page then close the application, anytime you rerun the application then the change you did will lost (it backs…