Telerik blogs

Latest

  • Web ASP.NET AJAX

    Atlas and strong typing

    I have just returned from Microsoft PDC 2005, and I must say that it was marvelous.  Being there was worth every miserable second on those flights :). The hottest thing for me was the new AJAX framework for ASP.NET -- Atlas.  Shanku Niyogi gave an overview session on Atlas that covered the potential uses of the framework.  Nikhil Kothari continued with a session on building Atlas components with server and client side examples.  Nikhil has posted an overview of the framework architecture on his blog.  You can download the slides of Shanku's presentation here, and Nikhil's -- here. I found it a bit odd at first that some...
    May 27, 2021 2 min read
  • Web

    Does your build talk to you?

    We have a fairly automated builds at telerik.  You keep everything in VSS, and the moment you need a build, you just check-in your latest changes and launch the build script.  The build runs on our integration machine and produces the final deliverables. Now the build might take some time for a few of the products (I wish VSS was not so darn slow!).  I get the build results and the log of the NAnt scripts by email, but sometimes that is not fast enough.  The answer to my problems came when I switched to Miranda as my IM client.  Miranda has a lovely...
    May 27, 2021 2 min read
  • Productivity Testing

    Poor man's ASP.NET testing

    Sometimes you have a simple page with some web controls on it.  You would like to have a simple way to make sure that the text of a status message is exactly the one you expect.  Well, it turns out that the .NET class library has a real gem that can help you.  The System.Net.WebClient class helps you request pages, post data, upload files with a simple interface.  Getting the page contents is easy: [Test]public void GetPage(){   WebClient client = new WebClient();   using (Stream dataStream = client.OpenRead(pageAddress))   {      XmlDocument document = new XmlDocument();      document.Load(dataStream);       XmlNode label = document.SelectSingleNode("//label[@id='nameLabel']");      Assert.AreEqual("Name:", label.InnerText);   }} I have taken some extra care to return valid XML,...
    May 27, 2021 2 min read
  • People

    telerik at PDC

     Guess what, seems like we will be making our debut at an industry event. Up until now we have only been visitors at VS Live, ASP Connections, TechEd, etc. but as a PDC sponsor we decided that it's time we be amongst exhibitors. It's a great opportunity for us to meet with all telerik customers and partners. If you are attending PDC, make sure you stop by booth #423. We'd love to meet you guys and break out of the "virtual" relationship we have with most of you. We've also got some nice surprises for those of you who stop by:)...
    May 27, 2021 1 min read
  • Release

    r.a.d.controls Q3 released!

    It's a great pleasure to announce the availability of r.a.d.controls Q3. You can read the full press release at: http://www.telerik.com/Default.aspx?PageId=1861&b21ActiveNewsId=YeA&b21CategoryId=ddu. Big thanks to everyone who contributed with ideas and reported problems. Overall, this was a great release. We managed to include everything we initially planned for in terms of new features and enhancements, we managed to test all products extensively, documentation was improved significantly, and last but not least, we were on time. The only thing that did not go as planned was the releases of the two brand new products r.a.d.callback (http://www.telerik.com/r.a.d.callback) and r.a.d.dock (http://www.telerik.com/r.a.d.dock) which were not released with Q3. The new docking control and the...
    May 27, 2021 1 min read
  • Web

    NAnt, the tool of the year

    I am using and learning .NET since my coming to telerik.  That would be more than a year.  If I had to pick a single tool that has been indispensable throughout that time, I would choose NAnt.  It is a build automation tool with an XML based syntax, similar to Apache Ant.  It has a host of useful tasks, that can make the building of a .NET assembly a piece of cake.  NAnt has a sister project -- NAntContrib.  It packs some Windows specific tasks, that are not directly NAnt related: IIS virtual directory manipulation, VSS file operations, etc. *ant tools are not just build...
    May 27, 2021 2 min read
  • People

    BLOG 101: An introduction to blogging with Hristo Deshev

    Hi there! I am much excited to start my very own "telerik powered" weblog.  This will be my way to share technical and nontechnical information with whomever finds that exciting (and not damaging to his health of course).  The focus will fall mainly on my adventures in ASP.NET server components creation and maintenance from the perspective of my telerik position.  I will try to share both the good and the bad parts of the job, so that you gain a wider perspective. I am an agile advocate, so you can expect a lot of agile, and mainly extreme programming (XP) related content here.  I believe this trend in software...
    May 27, 2021 2 min read
  • People

    "Hello World"

    Hello World - this is my first entry:)
    May 27, 2021 1 min read