Tag Archives: asp.net

My attempts at installing Umbraco via NuGet

I often use Umbraco as a CMS for my web projects, and NuGet for referencing other libraries. This made me wonder whether Umbraco could be deployed via Nuget. The short answer is, it is possible, but it does not work … Continue reading

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

Async Httphandlers in ASP.NET

What is the correct way to create a httphandler that potentially can take time and resources to complete. Well this article explains it very well: http://msdn.microsoft.com/en-us/magazine/cc164128.aspx If you don’t want to read all, you find the best solution in the … Continue reading

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

Google Sitemap .NET links

Some links with information about creating a Google Sitemap either directly in XML or via some .NET code. http://gerardmcgarry.com/blog/creating-a-google-sitemap-aspnet-website http://www.codeproject.com/KB/aspnet/GoogleSiteMapProvider.aspx

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

.NET Resource localization

ResourceBlender is open source and works for .NET: http://www.resourceblender.com/

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

Must read and references

Read: http://davybrion.com/blog/2009/12/using-nhibernate-in-your-service-layer/ Reference: http://west-wind.com/weblog/posts/132081.aspx

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

Memoryleaks with WinDbg

I have experienced the first major project with a memory leak problem… and how do one get started with Memory leak finding. It is a tough task and the learning curve is quite steep. You have to get to know the … Continue reading

Posted in Development | Tagged , , | 5 Comments

Dynamically Loading ASP.NET User Controls with jQuery

UPDATE (16-07-2009) Here is a new sample website with source code, it now disposes the page object and allows for WebControl rendering. Dynamically Loading ASP.NET User Controls with jQuery v2.zip (25.52 kb) ——————————————  This post is only relevant if you … Continue reading

Posted in Development | Tagged , , , , | 12 Comments

Create Word Documents using .NET without Interop

Original blog post: http://www.invoke.co.nz/products/docx.aspx ————————————————————————————– We have decided to release another component we've been using (FREE of charge, click here to download). This library creates Word Documents (.docx) using .NET. It is written purely in C#, you don't need any … Continue reading

Posted in Development | Tagged , , , , | 2 Comments

Prevent Cross-Site Request Forgery (CSRF) using ASP.NET MVC AntiForgeryToken helper

Original post: http://blog.codeville.net/2008/09/01/prevent-cross-site-request-forgery-csrf-using-aspnet-mvcs-antiforgerytoken-helper/ ——————————– Cross-site scripting (XSS) is widely regarded as the number one security issue on the web. But since XSS gets all the limelight, few developers pay much attention to another form of attack that’s equally destructive and … Continue reading

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

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