xerratus

Stories kicked by xerratus

10 ASP.NET Performance and Scalability Secrets(codeproject.com)

submitted by superghostsuperghost(2260) 4 years, 3 months ago

ASP.NET 2.0 has many secrets, when revealed, can give you big performance and scalability boost. For instance, there are secret bottlenecks in Membership and Profile provider which can be solved easily to make authentication and authorization faster. Furthermore, ASP.NET Http pipeline can be tweaked to avoid executing unnecessary code that gets hit on each and every request... read more...

2 comments |category: |Views: 69

tags: another

OpenID implementation in C# and ASP.NET(blog.madskristensen.dk)

submitted by dscoducdscoduc(1099) 4 years, 4 months ago

Interested in adding OpenID to your .NET website? read more...

3 comments |category: |Views: 378

tags: another

.NET Framework Library Source Code now available(weblogs.asp.net)

submitted by dalzieldalziel(6230) 4 years, 4 months ago

Scott Guthrie announces that the .NET framework source code can now accessed in Visual Studio read more...

1 comment |category: |Views: 90

tags: another

The Stopwatch Class(alteridem.net)

submitted by rprouserprouse(1175) 4 years, 4 months ago

Stop using DateTime to time long sections of code. The 2.0 framework introduced the System.Diagnostics.Stopwatch class to do the dirty work for you. read more...

1 comment |category: |Views: 19

tags: another

A better way to create a dynamic SQL stored procedure(xerratus.com)

submitted by xerratusxerratus(415) 4 years, 4 months ago

This one has been plaguing me for years: What is the best way to create a dynamic stored procedure that allows null inputs to filter results? Today, while working on another request to come up with a dynamic stored procedure for a specific report a client wants, I had an epiphany. If I use isnull() in conjunction to with the actual value, I can get the desired results, no matter what input(s) are null -if any or all. read more...

add a comment |category: |Views: 5

tags: another

Seamless inline text editing with ASP.NET AJAX(encosia.com)

submitted by crpietschmanncrpietschmann(11.3k) 4 years, 4 months ago

This is a technique that I really like. It’s excellently suited to intranet sites and administrative interfaces, where your users are typically familiar enough with the application to know which text they can click to edit. It’s actually very easy to implement, with a small amount of JavaScript. Update: This functionality is also available as an ASP.NET server control. read more...

1 comment |category: |Views: 74

tags: another

SubSonic: Version 2.1 (Pakala) Preview: The New Query Tool(blog.wekeroad.com)

submitted by alleyalley(2840) 4 years, 4 months ago

Eric and I have been working just about non-stop on our bug list as well as some very cool innovations that he and I have cooked up over the last six months. We’ve had to wait a bit for the dust to settle in the .NET world (not to mention our personal lives), but I think the wait has been worth it. Over the holidays I was able to create the querying API I’ve been thinking on for the last year, and it has come together nicely. I’d like to show you what I’ve come up with, and ask for your comments and help before we release it with version 2.1 of SubSonic. read more...

3 comments |category: |Views: 25

tags: another

How to check email works with no SMTP(dotnettipoftheday.org)

submitted by manovichmanovich(755) 4 years, 4 months ago

Testing code that sends email has always been a pain. You had to set up a SMTP service just to test that your .NET application sends the e-mail correctly... read more...

2 comments |category: |Views: 85

tags: another

Large file uploads in ASP.NET(weblogs.asp.net)

submitted by jongallowayjongalloway(4380) 4 years, 4 months ago

A review of some of the challenges and solutions to uploading large files in ASP.NET. read more...

add a comment |category: |Views: 248

tags: another

Completely free PDF .NET library written in C#(aspnetcafe.com)

submitted by dsalkodsalko(670) 4 years, 4 months ago

Want to add PDF support to your .NET project. Try this. Open Source library to create/edit PDF files. With unrestricted license to change, sell, sublicense. read more...

5 comments |category: |Views: 7498

tags: another

Using VS 2008 to Create New ASP.NET 2.0 with ASP.NET AJAX 1.0 Project(weblogs.asp.net)

submitted by craigtpcraigtp(683) 4 years, 4 months ago

Handy guide from Scott Guthrie on how to open and maintain older ASP.NET & AJAX Projects (ASP.NET 2.0 with AJAX 1.0). read more...

1 comment |category: |Views: 11

tags: another

Force HTTPS on all requests, HttpModule(blog.donnfelker.com)

submitted by phaymanphayman(3550) 4 years, 5 months ago

Sometimes we have websites that are strictly HTTPS. No files whatsoever are served up through HTTP. We want our users to only access the HTTPS portion of our website but we dont want them to remember "https://" blah blah blah. Honestly, who really wants to type all of that anyway? No one. read more...

add a comment |category: |Views: 98

tags: another

More Silk-style icons(damieng.com)

submitted by DamienGDamienG(1405) 4 years, 5 months ago

Everybody's heard of the fantastic silky-smooth "Silk Icons" set from FamFamFam. This new set complements that original 1,000 png icon set with over 450 more of the same for use in Windows or Web applications. read more...

1 comment |category: |Views: 270

tags: another

Spider's Web: Spawning threads in .NET (Part 1 of 5), The Basics(raasiel.typepad.com)

submitted by raasielraasiel(865) 4 years, 6 months ago

First part of a five part post on threading in .NET read more...

add a comment |category: |Views: 13

tags: another

The Gospel of the GUID - And Why It Matters!(weblogs.asp.net)

submitted by rimsystemsrimsystems(6119) 4 years, 6 months ago

There is only one commandment in the Gospel of the GUID: Thou shalt always use a GUID to uniquely identify a row in a table. read more...

20 comments |category: |Views: 20

tags: another

ASP.NET AJAX templating technique(weblogs.asp.net)

submitted by fehaarfehaar(580) 4 years, 7 months ago

Scott shows off a really cool way of using AJAX with custom web controls to make complex AJAX UI easier - without using UpdatePanels read more...

1 comment |category: |Views: 39

tags: another