Posts

Showing posts from May, 2017

Using Telerik RadProgressArea

Image
Hi there, So I would like to show you guys quite a simple way of making a progress bar using Telerik's UI for ASP.NET AJAX, I've been using their tools for a while now and find them easy to implement. So this blog post will focus on using the RadProgressArea . Just take note I'm using an older version of what is currently available.To be specific I'm on 2011.2.915.40. Also I'll be implementing this using a .NET web application. Step1 After we've created the new web application your page should look like this Step2 We'll add the necessary Telerik .dll's. Step3 Add the following line to your .aspx page. <%@ Register TagPrefix = "telerik" Namespace = "Telerik.Web.UI" Assembly = "Telerik.Web.UI" %> Step4 We add the telerik control in the .aspx page. Any control has the telerik: prefix attached in the front. Step4.5 When trying to run your application like this you'll maybe get the followi...