Devign

Stories kicked by Devign

Inline Recursion in ASP.NET Template to Print a Tree’s Node List(devign.me)

submitted by DevignDevign(180) 1 year, 8 months ago

Here’s a neat & clean way to perform a recursion in ASP.NET, inside the .aspx/.ascx file. Suitable for ASP.NET MVC as well as WebForms. No <asp:Repeater> + OnItemDataBound event or concatenating strings recursively in the code behind involved. [...] read more...

add a comment |category: |Views: 116

tags: another

SQL Tip: How to Avoid Fundamental Mistakes by Using Transactions(devign.me)

submitted by DevignDevign(180) 1 year, 9 months ago

When you plan to apply a big change to a database table, you should always triple check your queries, so nothing will get screwed. This will help you to review changes before committing them. read more...

add a comment |category: |Views: 161

tags: another

IIS7 File Upload Limit(devign.me)

submitted by DevignDevign(180) 1 year, 9 months ago

How to set file upload limit on IIS7 and ASP.NET. read more...

add a comment |category: |Views: 89

tags: another

Clear All ASP.NET Cache/Static Objects Programmatically(devign.me)

submitted by DevignDevign(180) 1 year, 9 months ago

How to reset an application, programmatically, without touching Web.config or IIS. read more...

add a comment |category: |Views: 25

tags: another