Tag Archives: control

New ASP.NET Charting Control

Microsoft released a free ASP.NET charting controls. Read more about it here: http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx Or take a qucik look directly on these following link: Microsoft recently released a cool new ASP.NET server control – <asp:chart /> – that can be used … Continue reading

Posted in Development | Tagged , , | Leave a comment

jQuery Ajax uploader plugin (with progress bar!)

Original post here: http://blog.codeville.net/2008/11/24/jquery-ajax-uploader-plugin-with-progress-bar/ —————————————— Do your web applications ever involve letting the user upload a file? If so, how’s the end-user experience: do you show a nice progress bar during the upload, or do you just leave the user … Continue reading

Posted in Development | Tagged , , | Leave a comment

Dynamic controls in ASP.NET

As many articles point out it is important to load dynamic control in the Init event of the life cycle. This is important if you want to preserve the view state. Another thing I found out… you need to instantiate … Continue reading

Posted in Development | Tagged , , | Leave a comment

How Do I: Build a Custom ASP.NET AJAX Server Control?

Original post here: http://www.asp.net/learn/ajax-videos/video-170.aspx — Learn how to create a custom Web server control with ASP.NET AJAX functionality using the AJAX extensions in the Microsoft AJAX Library. This video walks you through both the server-side .NET code and the client-side … Continue reading

Posted in Development | Tagged , , | Leave a comment

How Do I: Build Custom Server Controls that Work With or Without ASP.NET AJAX?

View original post here: http://www.asp.net/learn/ajax-videos/video-186.aspx — Do you have an idea for a custom server control that should be able to work without ASP.NET AJAX, yet could take advantage of ASP.NET AJAX if it is available? In this video we learn … Continue reading

Posted in Development | Tagged , , , | Leave a comment

Creating a GridView with Resizable Column Headers

View the original post here: http://mattberseth.com/blog/2007/08/creating_a_gridview_with_resiz.html — I was recently reading Dan Wahlin’s excellent ‘How To’ for creating a GridView extender control.  While I was going through his code samples, I thought it might be interesting to create another GridView extender … Continue reading

Posted in Development | Tagged , , | 3 Comments

ASP.NET Charting

Dundas and other Chart controls are often very expensive, that makes them unattractive for small and lowbudget projects. Well, free charting controls do exist. NPlot is a free charting library for .NET (http://www.nplot.com/), WebChart is also free (http://www.carlosag.net/Tools/WebChart/Default.aspx) The guys … Continue reading

Posted in Development | Tagged , | Leave a comment