0
votes
3answers
136 views
Get IIS site name from for an ASP.NET website
In my ASP.NET web app I'd like to look up the name it was given when it was created in IIS, which is unique to the server. I'd not interested in the domain name for the web site but the actual name …
2
votes
Identifying memory problems in an ASP.NET application
The classic problem of newing up a bunch of strings in a loop could cause the issue you're seeing due to large amounts of memory being allocated for new strings without releasing them. Are you usin …
1
vote
Identifying memory problems in an ASP.NET application
Are you properly unwiring event handlers everywhere? I'm told that they might be sitting around if you never detach them from the event. They might be keeping references to larger objects longer th …
1
vote
What are other ASP.NET web applications that are as well done as StackOverflow?
Many of the things you point out about are actually due to the use of ASP.NET MVC. Pretty URLs come out of the box, non-standard controls, well nothing comes out of the box with MVC so you have to …
1
vote
Are there any good e-commerce extensions/plugins for Umbraco?
At Codegarden we announced uCommerce, which is a fully integrated e-commerce package for Umbraco 4.0. You can see a full feature list at …
