User muerte - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T15:06:56Zhttp://stackoverflow.com/feeds/user/1269http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1599748/how-can-i-extract-localized-string-resources-for-translation0How can I extract localized string resources for translation?muerte2009-10-21T09:40:31Z2009-10-21T11:16:54Z
<p>I have several Visual Studio 2008 projects (ASP.NET 3.5) with many local resource files for localization of strings found in specific ASP.NET pages. Some of them are grouped in folders, some are named based on the page they are localizing, etc.</p>
<p>For example, App_LocalResources folder has a list of .resx files matching ASPX pages, UserControls/App_LocalResources matching ASCX user controls, etc.</p>
<p>Now I need to translate the application to another language and I would like to send all those keys for translation to someone who doesn't have access to the Visual Studio projects.</p>
<p>I could always write a small console app which would recursively find all .resx files and combine them to one big custom XML file which I could then send for translation. Upon receiving the translated XML file, the console app would recreate all small .resx files. </p>
<p>This all isn't a problem, but there must be a better way. What would you suggest, how should I do it?</p>
http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project12Should I accept IE 5.0 (!) as a browser requirement for a project?muerte2009-09-21T12:12:10Z2009-09-21T14:42:04Z
<p>Unbelievable as it sounds, I received a request for proposal for a project which has the Internet Explorer 5.0 and Firefox 2.0 as minimum browser requirements!</p>
<p>We tried to explain to the client all the issues regarding such requirements, but since it's a government project and public tender, we can't influence them. The requirements stay.</p>
<p>They also insist that the solution is "<em>modern, web 2.0 enabled (?!), accessible, ...</em>". I can't say much else, but it's basically a public web portal with community features and a CMS background.</p>
<p>The project is otherwise interesting and could be quite profitable, but this requirement seems as a <strong>never ending</strong> source of frustration and problems. </p>
http://stackoverflow.com/questions/353541/iis7-rewritepath-and-iis-log-files4IIS7, RewritePath and IIS log files muerte2008-12-09T17:15:27Z2009-09-21T13:22:22Z
<p>Hi,</p>
<p>I am using Context.RewritePath() in ASP.NET 3.5 application running on IIS7.</p>
<p>I am doing it in application BeginRequest event and everything works file.</p>
<p>Requests for /sports are correctly rewritten to default.aspx?id=1, and so on.</p>
<p>The problem is that in my IIS log I see GET requests for /Default.aspx?id=1 and not for /sports.</p>
<p>This kind of code worked perfectly under IIS6.</p>
<p>Using Microsoft Rewrite module is not an option, due to some business logic which has to be implemented.</p>
<p>Thanks.</p>
<p>EDIT: </p>
<p>It seems my handler is too early in the pipeline, but if I move the logic to a later event, than the whole rewrite thing doesn't work (it's too late, StaticFileHandler picks up my request). </p>
<p>I googled and googled, asked around, can't believe that nobody has this problem?</p>
<p>EDIT:</p>
<p>Yikes! Here's what I found on the IIS forum:</p>
<p>"This is because in integrated mode, IIS and asp.net share a common pipeline and the RewritePath is now seen by IIS, while in IIS6, it was not even seen by IIS - you can workaround this by using classic mode which would behave like IIS6."</p>
http://stackoverflow.com/questions/353541/iis7-rewritepath-and-iis-log-files/579141#5791411Answer by muerte for IIS7, RewritePath and IIS log files muerte2009-02-23T20:15:10Z2009-09-21T13:22:22Z<p>After some research, I've finally found a solution to the problem.</p>
<p>I have replaced the calls to Context.RewritePath() method with the new (introduced in ASP.NET 3.5) <strong>Context.Server.TransferRequest()</strong> method.</p>
<p>It seems obvious now, but not event Senior Dev Engineer on IIS Core team thought of that.</p>
<p>I've tested it for session, authentication, postback, querystring, ... issues and found none.</p>
<p>Tommorow I'll deploy the change to a very hight traffic site, and we'll soon know how it actually works. :) </p>
<p>I'll be back with the update.</p>
<p><strong>The update:</strong> the solution is still not entirely on my production servers but it's tested and it does work and as far as I can tell so far, it's a solution to my problem. If I discover anything else in production, I will post an update.</p>
http://stackoverflow.com/questions/896806/adding-more-details-to-exception-handling-with-enterprise-library1Adding more details to exception handling with Enterprise Librarymuerte2009-05-22T08:06:55Z2009-09-21T12:57:50Z
<p>I am using Enterprise Library 4.x for my exception handling logging (ASP.NET application). </p>
<p>Here is the EntLib method I am calling:</p>
<pre><code>ExceptionPolicy.HandleException(ex, exceptionPolicy.ToString());
</code></pre>
<p>How can I add a bit more details to the exception, like current request url, current user name, etc.?</p>
<p>I know I could wrap it in my exception and setting original exception as inner exception but that just doesn't seem right.</p>
http://stackoverflow.com/questions/896806/adding-more-details-to-exception-handling-with-enterprise-library/1454386#14543860Answer by muerte for Adding more details to exception handling with Enterprise Librarymuerte2009-09-21T12:57:50Z2009-09-21T12:57:50Z<p>To answer my own question: :)</p>
<p>It's not possible and the solution is actually quite simple: implement your own publisher! </p>
<p>And thats what I did. It's simple but I had to implement a lot more that just the publisher, due to the EntLib architecture but it wasn't difficult or time consuming, since everything is explained in the documentation that comes with the EntLib 4.x.</p>
http://stackoverflow.com/questions/17575/tool-for-generation-msdn-like-documentation-from-summary-tags3Tool for generation MSDN-like documentation from <summary> tags?muerte2008-08-20T08:14:02Z2009-08-05T09:59:43Z
<p>Does anyone know any tool like NDoc that could generate MSDN-like documentation out of XML comments in the C# code? I need it for .NET 3.5 and C#.</p>
<p>Sandcastle maybe?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/599984/parent-child-relationship-with-linq2sql-and-poco-objects0Parent-child relationship with LINQ2SQL and POCO objectsmuerte2009-03-01T15:46:41Z2009-05-12T20:05:33Z
<p>I just started learning LINQ2SQL and one of the first things I wanted to try is a simple parent-child hierarchy, but I can't seem to find a good way to do it. I saw some examples here on SO and i've googled, but I couldn't apply them directly, so I'll explain exactly what i'm trying to accomplish.</p>
<p>Lets use the common example with tags.</p>
<p>Database tables: Post-- Post_Tags -- Tags</p>
<p>I've created a simple Post class so I avoid passing Linq2Sql classes around:</p>
<pre><code>public class Post
{
public int Id {get; set;}
public int Title {get; set;}
public IEnumerable<string> Tags {get; set;}
}
</code></pre>
<p>I would like to select 5 latest records from the Posts table, get their related tags and return the IList where each Post has their Tags property filled.</p>
<p>Can you show me a concrete Linq2Sql code how could I do that?</p>
<p>I tried:</p>
<pre><code> IList<Post> GetLatest()
{
return (from p in _db.Posts
orderby p.DateCreated descending
select new Post
{
Id = p.Id,
Title = p.Title,
Tags = p.Post_Tags.Select(pt => pt.Tag.Name)
}).Take(5).ToList();
}
</code></pre>
<p>This works but duplicates Post records for each Tag record and I have to duplicate property mapping (Id=p.Id, ...) in every method I user. I then tried this approach, but in this case, I have a roundtrip to DB for every tag:</p>
<pre><code> IQueryable<Post> GetList()
{
return (from p in _db.Posts
select new Post
{
Id = p.Id,
Title = p.Title,
Tags = p.Post_Tags.Select(pt => pt.Tag.Name)
});
}
IList<Post> GetLatest()
{
return (from p in GetList()
orderby p.DateCreated descending
select p).Take(5).ToList();
}
</code></pre>
<p>If I were doing it in classic ADO.NET, I would create a stored procedure that returns two resultsets. One with Post records and second with related Tag records. I would then map them in the code (by hand, by DataRelation, ORM, etc.). Could I do the same with LINQ2SQL?</p>
<p>I'm really curious to see some code samples on how do you guys handle such simple hierarchies.</p>
<p>And yes, I would really like to return IList<> objects and my custom classes and not queryable Linq to Sql objects, because I would like to be flexible about the data access code if I for example decide to abandon Linq2Sql.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/679251/tracking-anonymous-user-activity1Tracking anonymous user activitymuerte2009-03-24T21:10:29Z2009-03-25T12:23:14Z
<p>I need to track anonymous users with enabled cookies. </p>
<p>Basically, they will go through the site, interact with it, and I would like to give them the best possible experience without requiring actual registration. Later on, if they want, they can register and their site activity will be tied to their new account. </p>
<p>Something like Stackoverflow but with the difference that I expect that majority of my users won't actually register but occasionally just comeback.</p>
<p>So, I don't want to create a bunch of dummy records in the Users table. And since I need it just for one table, I was thinking about something like this:</p>
<p><strong>VoteHistory table</strong></p>
<pre><code>Id TrackingToken VotingData
1 100 ...
2 100 ...
3 101 ...
4 102 ...
</code></pre>
<p><strong>Users table</strong></p>
<pre><code>Id TrackingToken OtherUsersColumns
1 100 ...
</code></pre>
<p><strong>TrackingTokens table</strong></p>
<pre><code>LastTrackingToken
102
</code></pre>
<p>I would increment a LastTrackingToken integer field and simply add that value to the users cookie and track his voting activity with it. Then, if he decides to register, I would simply add his cookie TrackingToken value to his Users record.</p>
<p>Initially I was thinking about a Guid/uniqueidentifier but since the voting table will be very large and I will need to query it, I'm worried about indexing the uniqueidentifier field. </p>
<p>So, the questions are (sorry for 3 sub-questions, but they are so related and I think the context is important, so I don't want to duplicate the question and context description):</p>
<ol>
<li><p>Is integer field better when it comes to performance and indexing? Have in mind that TrackingToken is not a primary key field!</p></li>
<li><p>Do you have some other idea how I could accomplish the scenario I outlined?</p></li>
<li><p>If I decide to go with the manual generation of integer TrackingTokens, what would be the best way to reliably generate/increment a new TrackingToken? Assume a lot of concurrent users will hit the database.</p></li>
</ol>
http://stackoverflow.com/questions/632300/which-is-the-best-encryption-mechanism/632325#6323251Answer by muerte for Which is the best encryption mechanism?muerte2009-03-10T21:19:47Z2009-03-12T16:01:54Z<p>Both are secure, well... enough. RC4 is faster so if that's important to you... </p>
<p>After reading other peoples answers (which are all correct), it's clear that it really depends on your context. There are so many other questions that could influence your decision. If it just needs to be fool proof, if it's not really something sensitive and you have a lot of data and speed is the factor, go for RC4. </p>
<p>Otherwise, if you need something a bit more secure and easier to implement or as you say "tougher to screw up" :) then go for 3DES, which is, as far as I remember, secure enough (!) till 2020-2030, or something like that. </p>
http://stackoverflow.com/questions/612892/how-to-deal-with-chronic-time-issues/612923#61292327Answer by muerte for How to Deal with chronic time issues?muerte2009-03-04T23:11:50Z2009-03-10T22:37:48Z<p>There is an interesting article by Joel Spolsky: <a href="http://www.joelonsoftware.com/items/2007/10/26.html" rel="nofollow">Evidence Based Scheduling</a></p>
<blockquote>
<h3>1) Break ‘er down</h3>
<p>When I see a schedule measured in days, or even weeks, I know it’s not going to work. You have to break your schedule into very small tasks that can be measured in hours. Nothing longer than 16 hours.</p>
<p>This forces you to actually figure out what you are going to do. Write subroutine foo. Create this dialog box. Parse the Fizzbott file. Individual development tasks are easy to estimate, because you’ve written subroutines, created dialogs, and parsed files before.</p>
<p>If you are sloppy, and pick big three-week tasks (e.g., “Implement Ajax photo editor”), then you haven’t thought about what you are going to do. In detail. Step by step. And when you haven’t thought about what you’re going to do, you can’t know how long it will take.</p>
<p>Setting a 16-hour maximum forces you to design the damn feature. If you have a hand-wavy three week feature called “Ajax photo editor” without a detailed design, I’m sorry to be the one to break it to you but you are officially doomed. You never thought about the steps it’s going to take and you’re sure to be forgetting a lot of them. </p>
</blockquote>
<p>The main point is that he (and you) should learn from his mistakes, and take them into account on the next estimation.</p>
<p>Also, if you are a developer, I would do regular code review at the end of the day to get a better insight into his development process. </p>
<p>And, of course, smaller iterations and more granularity with tasks. Set the maximum task duration to 1 day. That's the rule we have.</p>
http://stackoverflow.com/questions/632167/should-users-be-allowed-to-entered-a-password-with-a-space-at-the-beginning-or-en/632253#6322532Answer by muerte for Should users be allowed to entered a password with a space at the beginning or end?muerte2009-03-10T21:01:11Z2009-03-10T21:01:11Z<p>Space is a regular password character, and you shouldn't remove it. </p>
<p>Since you probably hash the password before storing it in the database, the space will be treated as any other character.</p>
http://stackoverflow.com/questions/615098/whats-the-optimal-solution-for-tag-keyword-matching4What's the optimal solution for tag/keyword matching?muerte2009-03-05T14:51:50Z2009-03-10T20:38:19Z
<p>I'm looking for the optimal solution for keyword matching between different records in the database. It's a classic problem, I've found similar questions, but nothing concretely.</p>
<p>I've done it with full text searches, joins and subqueries, temp tables, ... so i'd really like to see how you guys are solving such a common problem.</p>
<p>So, let's say I have two tables; <code>Products</code> and <code>Keywords</code> and they are linked with the third table, <code>Products_Keywords</code> in a classic many-to-many relationship.</p>
<p>If I show one <code>Product</code> record on the page and would like to show top <em>n</em> related products, what would be the best option? </p>
<p>We should take into account that records might share several keywords and this fact should determine the ordering of the top related product.</p>
<p>I'm open for other ideas as well, but T-SQL would be preferable solution due to the performance reasons. </p>
http://stackoverflow.com/questions/629984/options-for-persisting-data-as-a-set-of-key-value-pairs-with-a-common-key-and-typ/630012#6300120Answer by muerte for Options for persisting data as a set of key-value-pairs with a common key and typemuerte2009-03-10T12:54:48Z2009-03-10T12:54:48Z<p>I never based an entire application on this principle, but in almost all applications I do use some form of key-value pair collections which deal with extreme cases when the specific entity requires some additional properties which are not needed for other entities.</p>
<p>I basically serialize the dictionary and store it like that in the database with my entity data. That's what I use for post production patching when I have to deal with something too obscure to warrant a change in the entire model.</p>
<p>With the key-value pair data, I do store the type as well, so I can automatically render appropriate HTML controls. I have just basic types: text, multi-line, RTF, checkbox, number and date.</p>
http://stackoverflow.com/questions/616577/is-there-a-performance-issue-when-using-inline-sql-statements-rather-then-using-a/616698#6166983Answer by muerte for Is there a performance issue when using inline SQL statements rather then using a DAL design?muerte2009-03-05T21:29:03Z2009-03-05T21:29:03Z<p>When you reach real DB performance issues it won't really matter (performance wise) whether you're using stored procedures or direct SQL statements.</p>
<p>Your best bet in that situation is to avoid DB in the first place. In other words, it would be better to plan and architect a <strong>good caching mechanism</strong> because that will make all the difference when it really comes to serious traffic.</p>
<p>Stored procedures or inline code... again, performance wise (i'm not talking about maintainability, security, ...) simple doesn't matter that much anymore.</p>
http://stackoverflow.com/questions/612212/sharepoint-url-retrieval-for-splistitem/612239#612239-1Answer by muerte for SharePoint URL retrieval for SPListItemmuerte2009-03-04T20:16:15Z2009-03-04T21:52:18Z<p>That is how SharePoint stores links. First the URL and then the Title that's actually shown on the page.</p>
<p>From the SharePoint documentation:</p>
<p><em>"The URL field uniquely consists of two strings separated by a comma and space. One string contains the URL path and the other contains the description used as hyperlinked text."</em></p>
<p>You have to split the string to get two parts.</p>
<pre><code>string url = field["URL"].Split(',')[0];
string title = field["URL"].Split(',')[1];
</code></pre>
<p>Code is not optimal, but just to show you exactly what I mean.</p>
<p>Oliver, you didn't specify SharePoint version. My answer is for 2003 version. If you have MOSS, take a look at <strong>SPFieldUrl</strong> and <strong>SPFieldUrlValue</strong> classes.</p>
http://stackoverflow.com/questions/612248/eml-to-pdf-api/612397#6123971Answer by muerte for .eml to .pdf APImuerte2009-03-04T20:56:16Z2009-03-04T20:56:16Z<p>We had a similar task, but on a much smaller scale and it was a temporary solution. We converted the EML files to HTML pages and then used the <a href="http://www.websupergoo.com/abcpdf-1.htm" rel="nofollow">ABC Pdf</a> component (I think they had a free version back then?) to create the PDF files out of the HTML pages. We did everything directly from the ASP.NET page.</p>
http://stackoverflow.com/questions/612316/is-it-worth-normalising-enumeration-values-into-a-new-table/612337#6123371Answer by muerte for Is it worth normalising enumeration values into a new table?muerte2009-03-04T20:43:10Z2009-03-04T20:43:10Z<p>If it's something <strong>so constant</strong> as the information about the days of the week, I would just define a enum in the code and store the integer in the database. </p>
http://stackoverflow.com/questions/610016/is-it-possible-to-import-a-newsgroup-into-a-tfs-discussion/612325#6123250Answer by muerte for Is it possible to import a newsgroup into a TFS discussion?muerte2009-03-04T20:40:14Z2009-03-04T20:40:14Z<p>Just a small clarification. There are no TFS discussion groups. TFS uses SharePoint WSS as a collaboration tool. So, you might find better results if you search for any tools that import things to WSS Discussions. You can also find third party discussion web parts which you can install on the WSS site.</p>
http://stackoverflow.com/questions/612289/why-would-clicking-view-all-site-content-generate-an-error/612311#6123111Answer by muerte for Why would clicking "View All Site Content" generate an error?muerte2009-03-04T20:35:38Z2009-03-04T20:35:38Z<p>Hm, maybe you can check whether any web part is causing problems.</p>
<p>Just add <strong>?contents=1</strong> at the end of the URL and you will go to the Web Part Maintenance mode for the current page.</p>
<p>It's a long shot, but with SharePoint you never know :)</p>
http://stackoverflow.com/questions/612124/how-do-you-call-a-javascript-function-from-an-aspx-control-event/612143#6121431Answer by muerte for How do you call a Javascript function from an ASPX control event?muerte2009-03-04T19:45:35Z2009-03-04T19:59:04Z<p>You can't do it directly from an event, because ASPX control event is server side.</p>
<p>What you can do is emit a Javascript in the ASPX event which will call the JavaScript function when the page reloads.</p>
<p>For example, if in your ASPX page you have a Javascript function called "DoSomething()", in you ASPX control event, add the following:</p>
<pre><code>protected void btnSubmit_Click(object sender, EventArgs e)
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "myEvent", "DoSomething()", true);
}
</code></pre>
<p>The last boolean parameter defines that tags are added automatically.</p>
http://stackoverflow.com/questions/611957/what-does-net-developers-need-to-know-about-these-certain-topics/612057#6120572Answer by muerte for What does .NET developers need to know about these certain topics?muerte2009-03-04T19:24:41Z2009-03-04T19:24:41Z<p>On top of my head, for junior developers:</p>
<ul>
<li>Difference between method overriding and overloading</li>
<li>Difference between namespace, class, assembly</li>
<li>Value and reference type differences</li>
<li>Explain boxing and how to avoid it</li>
</ul>
http://stackoverflow.com/questions/603967/returning-anonymous-types-from-stored-procedure-with-linq2sql0Returning anonymous types from stored procedure with LINQ2SQL muerte2009-03-02T20:57:22Z2009-03-02T23:53:43Z
<p>Consider the following stored procedure:</p>
<pre><code>SELECT * FROM Customers;
SELECT Customer.Id, Customer.Name, Order.Total, Order.DateOrdered
FROM Customers INNER JOIN Orders ON Customers.Id = Orders.CustomerId;
</code></pre>
<p>The procedure obviously returns two result sets which I'm trying to retrieve with this partial class method:</p>
<pre><code>public partial class DBSproc : DataContext
{
[Function(Name = "dbo.spGetCustomersAndOrders")]
[ResultType(typeof(Customer))]
// What type should I use here for the second resultset?
[ResultType(typeof(... what here? ...))]
public IMultipleResults GetCustomersAndOrders()
{
IExecuteResult result =
this.ExecuteMethodCall(this,
((MethodInfo)(MethodInfo.GetCurrentMethod())));
return (IMultipleResults)(result.ReturnValue);
}
}
</code></pre>
<p>I understand the first result set will be mapped to the Customer entity, but what about the second one? The second one is a custom select, combining multiple columns from several tables. I don't have a entity with these properties. </p>
<p>Should I create a dummy entity just for that resultset? I was hoping I could somehow use anonymous types for such ad-hoc queries.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/577233/sql-alert-when-stored-procedure-executes-for-too-long1SQL Alert when stored procedure executes for too longmuerte2009-02-23T10:59:08Z2009-03-02T18:02:36Z
<p>I would like to set up a SQL Server 2008 Alert to notify me when any procedure executes for 1 second or longer (just an example).</p>
<p>Any ideas?</p>
<p>EDIT:</p>
<p>Okay, it seems this is not possible. But, just to nudge you in another direction, I know that there are statistics tables in the master database which hold compilation counts, number of calls and other various statistics. Could I maybe periodically query them and then report on it, somehow?</p>
http://stackoverflow.com/questions/586574/using-areas-and-iterations-in-team-foundation-server-20082Using Areas and Iterations in Team Foundation Server 2008muerte2009-02-25T15:49:37Z2009-02-27T17:30:30Z
<p>If you are using TFS 2005 or 2008, how do you user iterations and areas?</p>
<p>Do you create an area for specific parts of the application you are building?</p>
<p>Here is an interesting article on areas and how the TeamSystem team uses them:</p>
<p><a href="http://blogs.msdn.com/ericlee/archive/2006/08/09/when-to-use-team-projects.aspx" rel="nofollow">http://blogs.msdn.com/ericlee/archive/2006/08/09/when-to-use-team-projects.aspx</a></p>
<p>But, i'm even more curious about iterations and I would be grateful if you could show me few concrete examples.</p>
<p>Do you create iterations based on milestones or based around certain functionality?</p>
<p>What happens when you finish v1, how do you manage v2 or updates to v1?</p>
<p>We are using MSF Agile template.</p>
http://stackoverflow.com/questions/588263/how-can-i-get-all-a-forms-values-that-would-be-submitted-without-submitting/588300#5883002Answer by muerte for How can I get all a form's values that would be submitted without submittingmuerte2009-02-25T22:57:20Z2009-02-25T22:57:20Z<p>You can use this simple loop to get all the element names and their values.</p>
<pre><code>var params;
for(i=0; i<document.FormName.elements.length; i++)
{
var fieldName = document.FormName.elements[i].name;
var fieldValue = document.FormName.elements[i].value;
// use the fields, put them in a array, etc.
// or, add them to a key-value pair strings,
// as in regular POST
params += fieldName + '=' + fieldValue + '&';
}
// send the 'params' variable to web service, GET request, ...
</code></pre>
http://stackoverflow.com/questions/545844/biggest-performance-improvement-youve-had-with-the-smallest-change/547697#5476970Answer by muerte for Biggest performance improvement you've had with the smallest change?muerte2009-02-13T21:11:33Z2009-02-18T21:25:24Z<p>Turning <strong>off</strong> Compiled flag for RegexOptions on Vista 64-bit.</p>
<p>Due to some strange bug with the .NET 2.0 Framework, Regex parsing is two orders of magnitude slower if the flag is turned on!</p>
http://stackoverflow.com/questions/561132/how-to-add-a-standard-set-of-using-statements-in-vs/561159#5611593Answer by muerte for How to add a standard set of 'using' statements in VS?muerte2009-02-18T14:04:46Z2009-02-18T14:04:46Z<p>You can do it by editing Visual Studio Item templates.</p>
<p>More information <a href="http://visualstudiomagazine.com/columns/article.aspx?editorialsid=2761" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/558925/caching-strategy-output-cache-vs-data-cache-or-both/558963#5589631Answer by muerte for Caching strategy, Output Cache vs Data Cache or both?muerte2009-02-17T22:12:53Z2009-02-17T22:12:53Z<p>We're doing API and Output caching on a large scale (3 milion visits a day) web site (news portal). The site is primarily used by anonymous users, but we do have authenticated users and we cache a complete site just for them, due to some personalized parts of the site, and I must admit that we had absolutely no problems with memory pressure. </p>
<p>So, my advice would be cache everything you can in API cache so your Output cache rebuilding is even faster.</p>
<p>Of course, pay close attention to your cache ratio values in the performance counters. You should see numbers >95% of cached hits. </p>
<p>Another thing to pay attention is cache invalidation, this is a big issue if you have a lot of related content. For example, you cache music stuff and information about one album or song might be displayed and cached on few hundred pages. If anything changes in that song, you have to invalidate all of these pages which can be problematic.</p>
<p>Bottom line, caching is one of the best features of ASP.NET, it's done superbly and you can rely on it.</p>
http://stackoverflow.com/questions/558858/coding-stored-procedure-for-search-screen-with-multiple-optional-criteria/558872#5588720Answer by muerte for Coding stored procedure for search screen with multiple, optional criteriamuerte2009-02-17T21:49:43Z2009-02-17T21:49:43Z<p>I would do it with <strong>sp_executesql</strong> because the plan will be cached just for the first pattern, or the first set of conditions.</p>
<p>Take a look at this <a href="http://technet.microsoft.com/en-us/library/ms188001.aspx" rel="nofollow">TechNet article</a>:</p>
<p>*sp_executesql can be used instead of stored procedures to execute a Transact-SQL statement many times when the change in parameter values to the statement is the only variation. Because the Transact-SQL statement itself remains constant and only the parameter values change, the SQL Server query optimizer is likely to reuse the execution plan it generates for the first execution.*</p>
http://stackoverflow.com/questions/17575/tool-for-generation-msdn-like-documentation-from-summary-tagsComment by muerte on Tool for generation MSDN-like documentation from <summary> tags?muerte2009-10-27T21:55:47Z2009-10-27T21:55:47ZYes, but my question was asked 6 months before that one! http://stackoverflow.com/questions/1599748/how-can-i-extract-localized-string-resources-for-translation/1599777#1599777Comment by muerte on How can I extract localized string resources for translation?muerte2009-10-21T09:54:09Z2009-10-21T09:54:09ZIn this case this is not possible. We have to send a single file.http://stackoverflow.com/questions/588263/how-can-i-get-all-a-forms-values-that-would-be-submitted-without-submitting/588300#588300Comment by muerte on How can I get all a form's values that would be submitted without submittingmuerte2009-10-21T08:35:12Z2009-10-21T08:35:12ZAFAIK - yes, because checkbox and radio button have 'name' and 'value' attributes/properties. The only one I'm not really sure is Listbox, because it has a child collection with Option elements.http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454479#1454479Comment by muerte on Should I accept IE 5.0 (!) as a browser requirement for a project?muerte2009-09-21T19:22:47Z2009-09-21T19:22:47ZThat's fine, all I'm doing here is asking for opinions which will help me in my decision whether to bite the bullet or not. I don't see how this is whining...http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454284#1454284Comment by muerte on Should I accept IE 5.0 (!) as a browser requirement for a project?muerte2009-09-21T13:39:35Z2009-09-21T13:39:35ZI see, tnx for the explanationhttp://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454374#1454374Comment by muerte on Should I accept IE 5.0 (!) as a browser requirement for a project?muerte2009-09-21T13:19:04Z2009-09-21T13:19:04ZLOL Musi, great point! :)http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454232#1454232Comment by muerte on Should I accept IE 5.0 (!) as a browser requirement for a project?muerte2009-09-21T12:47:48Z2009-09-21T12:47:48ZExcellent! This is a good argument.http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-projectComment by muerte on Should I accept IE 5.0 (!) as a browser requirement for a project?muerte2009-09-21T12:46:10Z2009-09-21T12:46:10ZI've up-voted a ton of answers to my questions (almost every), and accepted the ones which really solved my problem. But, if none actually solved my issue, I didn't think I should just accept one. I thought community votes provide enough differentiation for such answers. But, I will go through them again and perhaps "accept" some... thank you for reminding me. ;)http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454284#1454284Comment by muerte on Should I accept IE 5.0 (!) as a browser requirement for a project?muerte2009-09-21T12:38:18Z2009-09-21T12:38:18ZPerhaps I'm wrong, but I think IE5 supports XmlHttpRequest object.http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-projectComment by muerte on Should I accept IE 5.0 (!) as a browser requirement for a project?muerte2009-09-21T12:34:47Z2009-09-21T12:34:47ZGuys, the question is 21 minutes old! :) You are too fast, the answers are great, really, and I will definitely accept one.http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454220#1454220Comment by muerte on Should I accept IE 5.0 (!) as a browser requirement for a project?muerte2009-09-21T12:17:22Z2009-09-21T12:17:22ZWe tried... but it's government and they can't (or won't) change a word from the tender... :(http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454216#1454216Comment by muerte on Should I accept IE 5.0 (!) as a browser requirement for a project?muerte2009-09-21T12:16:23Z2009-09-21T12:16:23ZYes, that's right. +1http://stackoverflow.com/questions/679251/tracking-anonymous-user-activityComment by muerte on Tracking anonymous user activitymuerte2009-03-25T12:25:18Z2009-03-25T12:25:18ZSure, but in what table? It can't be in VoteHistory because, as you can see in the example, the value of the token in that column is not unique. Or did I misunderstood you?http://stackoverflow.com/questions/679251/tracking-anonymous-user-activity/679274#679274Comment by muerte on Tracking anonymous user activitymuerte2009-03-24T21:22:00Z2009-03-24T21:22:00ZThe links you provided are almost completely unrelated to the question.http://stackoverflow.com/questions/679251/tracking-anonymous-user-activity/679264#679264Comment by muerte on Tracking anonymous user activitymuerte2009-03-24T21:18:27Z2009-03-24T21:18:27ZI would encrypt the value in the cookie, so that's not really an issue I think.