User Chris - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T21:48:24Zhttp://stackoverflow.com/feeds/user/34942http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1821762/image-vertical-alignment-issue1image vertical alignment issueChris2009-11-30T19:09:40Z2009-11-30T20:31:37Z
<p>I have an image that I want vertically aligned with some text. The image has no border, no spacing, and has been properly cropped. However, it aligns differently in IE and Firefox, and I cannot figure out why.</p>
<p>Alignment in IE:</p>
<p><img src="http://i149.photobucket.com/albums/s52/ripvannwinkler/close%5Fie.png" alt="alt text"></p>
<p>Alignment in FF:</p>
<p><img src="http://i149.photobucket.com/albums/s52/ripvannwinkler/close%5Fff.png" alt="alt text"></p>
<p>Notice how in FF, the X box is flush with the bottom of the text. The HTML I am using is:</p>
<pre><code><div id="Header">
<a href="#" onclick="return false;">Close</a>
<a href="#" onclick="return false;"><img src="App_Themes/Dark/images/close-button.gif" alt="Close" style="border-width:0px;" /></a>
</div>
</code></pre>
<p>And the relevant part of the stylesheet looks like:</p>
<pre><code>#Header img
{
vertical-align: middle;
display: inline-block;
}
</code></pre>
<p>I've handled this in the past by making the image element a block element, but that only works when the image is the only element in the container. How can I fix this?</p>
http://stackoverflow.com/questions/1790316/nhibernate-criteria-query-question0NHibernate criteria query questionChris2009-11-24T14:09:56Z2009-11-30T11:58:22Z
<p>I have 3 related objects (Entry, GamePlay, Prize) and I'm trying to find the best way to query them for what I need using NHibernate. When a request comes in, I need to query the Entries table for a matching entry and, if found, get a) the latest game play along with the first game play that has a prize attached. Prize is a child of GamePlay and each Entry object has a GamePlays property (IList).</p>
<p>Currently, I'm working on a method that pulls the matching Entry and eagerly loads all game plays and associated prizes, but it seems wasteful to load all game plays just to find the latest one and any that contain a prize.</p>
<p>Right now, my query looks like this:</p>
<pre><code>var entry = session.CreateCriteria<Entry>()
.Add(Restrictions.Eq("Phone", phone))
.AddOrder(Order.Desc("Created"))
.SetFetchMode("GamePlays", FetchMode.Join)
.SetMaxResults(1).UniqueResult<Entry>();
</code></pre>
<p>Two problems with this:</p>
<ol>
<li>It loads all game plays up front. With 365 days of data, this could easily balloon to 300k of data per query.</li>
<li>It doesn't eagerly load the Prize child property for each game. Therefore, my code that loops through the GamePlays list looking for a non-null Prize must make a call to load each Prize property I check.</li>
</ol>
<p>I'm not an nhibernate expert, but I know there has to be a better way to do this. Ideally, I'd like to do the following (pseudocode):</p>
<pre><code>entry = findEntry(phoneNumber)
lastPlay = getLatestGamePlay(Entry)
firstWinningPlay = getFirstWinningGamePlay(Entry)
</code></pre>
<p>The end result of course is that I have the entry details, the latest game play, and the first winning game play. The catch is that I want to do this in as few database calls as possible, otherwise I'd just execute 3 separate queries.</p>
<p>The object definitions look like:</p>
<pre><code>public class Entry
{
public Guid Id {get;set;}
public string Phone {get;set;}
public IList<GamePlay> GamePlays {get;set;}
// ... other properties
}
public class GamePlay
{
public Guid Id {get;set;}
public Entry Entry {get;set;}
public Prize Prize {get;set;}
// ... other properties
}
public class Prize
{
public Guid Id {get;set;}
// ... other properties
}
</code></pre>
<p>The proper NHibernate mappings are in place, so I just need help figuring out how to set up the criteria query (not looking for HQL, don't use it).</p>
http://stackoverflow.com/questions/1765359/css-form-layout-question1CSS form layout questionChris2009-11-19T18:09:30Z2009-11-26T13:21:28Z
<p>I have the following element on my form:</p>
<pre><code><li>
<label class="fixed" for="Interests">Program genre interests:</label>
<label for="Sports"><%=Html.CheckBox("Sports")%>Sports</label>
<label for="Comedy"><%=Html.CheckBox("Comedy")%>Comedy</label>
<label for="News"><%=Html.CheckBox("News")%>News</label>
<label for="Drama"><%=Html.CheckBox("Drama")%>Drama</label>
<label for="Reality"><%=Html.CheckBox("Reality")%>Reality</label>
<label for="Kids"><%=Html.CheckBox("Kids")%>Kids'</label>
</li>
</code></pre>
<p>The "fixed" class simply makes the label an inline block with a fixed width (to align the fields properly). The problem shows up if the check boxes are forced to wrap for whatever reason, because the second row of check boxes starts back underneath the label, rather than left aligned with the first row of check boxes.</p>
<p>I'm trying really hard to minimize the necessary markup / styling here, but I'm not sure the most efficient way to achieve the alignment I'm looking for. What I'm getting is:</p>
<pre><code>label text here: cb1, cb2, cb3, cb4
cb5, cb6, cb7, etc...
</code></pre>
<p>And what I want is</p>
<pre><code>label text here: cb1, cb2, cb3, cb4
cb5, cb6, cb7, etc...
</code></pre>
<p>What is the shortest / simplest html / css to achieve this?</p>
<p>Edit: I should note that I'm trying to avoid using floats because the rest of the page will contain some floated elements and I've had issues with nested floats before.</p>
http://stackoverflow.com/questions/868622/asp-net-mvc-findpartialview-performance0asp.net mvc findpartialview performanceChris2009-05-15T13:17:28Z2009-11-25T23:00:02Z
<p>I have an ASP.NET MVC app that is using the AreaViewEngine proposed by Phil Haack <a href="http://haacked.com/archive/2008/11/04/areas-in-aspnetmvc.aspx" rel="nofollow">here</a>. It works fine, but the app seems kind of sluggish, so I was doing some profiling using dotTrace. I pushed the app to our dev server, changed the debug flag to false in web.config (compilation debug="false"), started up the profiler, and used jmeter to generate a few thousand hits. What I found is listed below:</p>
<p><img src="http://i44.tinypic.com/av6e1c.jpg" alt="alt text" /></p>
<p>Notice how VirtualPathProviderViewEngine.FindPartialView took over 320 seconds. I'm unable to drill down any farther to see what underlying code is causing the problem, but I suspect it's related to the issue mentioned <a href="http://codeclimber.net.nz/archive/2009/04/22/how-to-improve-htmlhelper.renderpartial-performances-donrsquot-run-in-debug-mode.aspx" rel="nofollow">here</a>.</p>
<p>The blog specifically states that running in release mode will cause view path resolution to be cached, but this doesn't seem to be the case (or if it is, something else is taking a hell of a lot of time within the FindPartialView function.</p>
<p>Any thoughts?</p>
<p><strong>Edit:</strong></p>
<p>I never did find the cause of the problem, but I ended up downloading the MVC source code for release 1.0 and it works fine. Must be a discrepancy between the installable binary and the source code for v1.0. or something borked with my install (though the issue manifested itself on multiple machines).</p>
http://stackoverflow.com/questions/1777519/how-much-should-i-stretch-the-truth-on-my-resume/1777531#177753112Answer by Chris for How much should I "stretch the truth" on my resume?Chris2009-11-22T01:57:59Z2009-11-22T01:57:59Z<p>I know this is going to be the obvious answer, but you shouldn't stretch the truth at all. Accept the fact that you have limited (or no) experience in the professional world and apply for entry level positions to get that valuable experience. It sounds to me like you're hoping to jump straight from college to a successful career, but the reality is that it doesn't happen that way. Those that do stretch the truth and get lucky end up being the bane of their co-workers and, if everyone else around them is lucky enough, ultimately terminated.</p>
http://stackoverflow.com/questions/1750369/sql-server-query-runs-slower-from-ado-net-than-in-ssms0SQL Server query runs slower from ADO.NET than in SSMSChris2009-11-17T17:15:48Z2009-11-18T03:54:58Z
<p>I have a query from a web site that takes 15-30 seconds while the same query runs in .5 seconds from SQL Server Management studio. I cannot see any locking issues using SQL Profiler, nor can I reproduce the delay manually from SSMS. A week ago, I detached and reattached the database which seemed to miraculously fix the problem. Today when the problem reared its ugly head again, I tried merely rebuilding the indexes. This also fixed the problem. However, I don't think it's necessarily an index problem since the indexes wouldn't be automatically rebuilt on a simple detach/attach, to my knowledge.</p>
<p>Any idea what could be causing the delay? My first thought was that perhaps some parameter sniffing on the stored procedure being called (said stored proc runs a CTE, if that matters) was causing a bad query plan, which would explain the intermittent nature of the problem. Since both detaching / reattaching and an index rebuild should theoretically invalidate the cached query plan, this makes sense, but I'm unsure how to verify this. Additionally, why wouldn't the same query (copied directly from SQL Profiler with the exact same parameters) exhibit the same delay when run manually through SSMS?</p>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/1730134/asp-net-mvc-email/1731460#17314603Answer by Chris for ASP.NET MVC EmailChris2009-11-13T19:45:49Z2009-11-13T19:45:49Z<p>Why do you need to create the email from a view? Why not use a plain old template file? I do this all the time - I make a template and use the NVelocity engine from the castle project (not to be confused with an nvelocity VIEW engine) to render the template.</p>
<p>Example:</p>
<pre><code>var nvEngine = new NVelocityEngine();
nvEngine.Context.Add("FullName", fullName);
nvEngine.Context.Add("MallName", voucher.Mall.Name);
nvEngine.Context.Add("ConfirmationCode", voucher.ConfirmationCode);
nvEngine.Context.Add("BasePath", basePath);
nvEngine.Context.Add("TermsLink", termsLink);
nvEngine.Context.Add("LogoFilename", voucher.Mall.LogoFilename);
var htmlTemplate = System.IO.File.ReadAllText(
Request.MapPath("~/App_Data/Templates/Voucher.html"));
var email = nvEngine.Render(htmlTemplate);
</code></pre>
<p>The NVelocityEngine class is a wrapper I wrote around the NVelocity port provided by the Castle project as shown below:</p>
<pre><code>using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using NVelocity;
using NVelocity.App;
namespace MyProgram
{
/// <summary>
/// A wrapper for the NVelocity template processor
/// </summary>
public class NVelocityEngine : VelocityEngine
{
Hashtable context = new Hashtable();
/// <summary>
/// A list of values to be merged with the template
/// </summary>
public Hashtable Context
{
get { return context; }
}
/// <summary>
/// Default constructor
/// </summary>
public NVelocityEngine()
{
base.Init();
}
/// <summary>
/// Renders a template by merging it with the context items
/// </summary>
public string Render(string template)
{
VelocityContext nvContext;
nvContext = new VelocityContext(context);
using (StringWriter writer = new StringWriter())
{
this.Evaluate(nvContext, writer, "template", template);
return writer.ToString();
}
}
}
}
</code></pre>
<p>In this way, you don't have to meddle with the view engine at all, and you can theoretically chain this with the ASP.NET view engine if you wanted, like I have done in the following controller method:</p>
<pre><code>public ActionResult ViewVoucher(string e)
{
e = e.Replace(' ', '+');
var decryptedEmail = CryptoHelper.Decrypt(e);
var voucher = Voucher.FindByEmail(decryptedEmail);
if (voucher == null) return View("Error", new Exception("Voucher not found."));
var basePath = new Uri(Request.Url, Url.Content("~/")).ToString();
var termsLink = new Uri(Request.Url, Url.Action("TermsGC", "Legal")).ToString();
basePath = basePath.Substring(0, basePath.Length - 1);
var fullName = voucher.FirstName;
if (!string.IsNullOrEmpty(voucher.LastName))
fullName += " " + voucher.LastName;
var nvEngine = new NVelocityEngine();
nvEngine.Context.Add("FullName", fullName);
nvEngine.Context.Add("MallName", voucher.Mall.Name);
nvEngine.Context.Add("ConfirmationCode", voucher.ConfirmationCode);
nvEngine.Context.Add("BasePath", basePath);
nvEngine.Context.Add("TermsLink", termsLink);
nvEngine.Context.Add("LogoFilename", voucher.Mall.LogoFilename);
var htmlTemplate = System.IO.File.ReadAllText(
Request.MapPath("~/App_Data/Templates/Voucher.html"));
return Content(nvEngine.Render(htmlTemplate));
}
</code></pre>
http://stackoverflow.com/questions/1711290/how-to-programatically-identify-a-file-as-a-net-assembly/1711320#17113201Answer by Chris for how to programatically identify a file as a .NET assembly?Chris2009-11-10T21:26:38Z2009-11-10T21:26:38Z<p>In addition to Jeff's suggestion, there appears to be a method to test if an assembly is managed without throwing an exception documented here: <a href="http://www.codeguru.com/forum/showthread.php?t=424454" rel="nofollow">http://www.codeguru.com/forum/showthread.php?t=424454</a></p>
<blockquote>
<p>Actually, if you open a .NET Library / Application in a binary editor, you will see that the ASCI text "BSJB" is shortly followed by the version of the Framework that the DLL / EXE needs.</p>
<p>So, depending on the presence of this search attribute, you can not only identify whether the library / executible is a managed library, but also the version of the Framework it uses.</p>
</blockquote>
http://stackoverflow.com/questions/1702180/how-do-you-keep-your-backing-fields-organized-styles-patterns/1702202#17022025Answer by Chris for How do you keep your backing fields organized? (Styles/Patterns)Chris2009-11-09T16:39:01Z2009-11-09T16:39:01Z<p>I tend to keep the backing fields together at the top, but then I do that with method variables too. Perhaps its a carry over from some of the older languages where variable declaration was always the first step, but it just seems more organized to me than declaring variables inline as needed.</p>
<p>If you don't like declaring variables at the top, the closest I've seen to your "ideal" style would be:</p>
<pre><code>private int _integer1 = 0;
public int Integer1
{
get {return _integer1;}
set {_integer1 = value;}
}
</code></pre>
http://stackoverflow.com/questions/1675075/database-design-for-write-heavy-web-application3Database design for write-heavy web applicationChris2009-11-04T16:41:09Z2009-11-07T15:17:44Z
<p>A lot of the LOB applications we provide to our customers are of a marketing / promotional nature (sweepstakes, event registration, etc...). Most of the applications, while very simple, are very demanding on the database. Imagine a "registration" type site as the backing for a commercial that airs during the superbowl, for example (yes, we've had several).</p>
<p>Though we have gotten very good at optimizing our web app code, the database always remains an issue, despite the application being relatively simple. The flow is typically something like:</p>
<ol>
<li>Read from database to detect existing record</li>
<li>Write to database if record is new</li>
</ol>
<p>In many cases, this is all the data access our application needs to perform. However, given that it is the sole purpose of the application, it's quite important that this simple process be optimized greatly.</p>
<p>For the purposes of this question, we have a single server running a raid 5 disk array for the data files and another raid 5 array for the logs. At this time, the OS is Windows 2003 standard 32bit and the server has 4 GB of memory. Some apps use SQL 2005 standard while others use MySQL 5.1. I'm <strong>very well aware</strong> that certain OS and hardware optimizations are possible here, but I'm looking to address my needs from a software side first. Extensive profiling has taught us that <strong>disk IO is generally the main bottleneck</strong>.</p>
<p>Having said all that, and knowing that caching won't help much since most reads are unique and return very little data (often only a bit indicating whether a record exists or not), I'm considering making a leap into the realm of in-memory databases as sort of a write-cache layer to the real database. This seems like a good fit given that most of our high volume traffic is sporadic in nature, and not sustained over several hours. Additionally, the potential loss of a few minutes of data due to a server crash would be acceptable in most cases.</p>
<p>In the simplest form, I would modify a typical registration app to do the following:</p>
<ol>
<li>Query the disk DB and memory DB for existing records</li>
<li>If none, write data to the memory DB and return</li>
<li>Periodically flush memory DB to disk DB</li>
</ol>
<p><strong>My question is</strong>: what are my options for this intermediate in-memory database? I've experimented with in-memory hash tables, data tables, and such, but I'm looking for other options or even suggestions for a completely different approach.</p>
http://stackoverflow.com/questions/1669684/unexpected-side-effect-of-htmlhelpers-in-asp-net0Unexpected side effect of HtmlHelpers in ASP.NETChris2009-11-03T19:41:54Z2009-11-04T07:23:00Z
<p>I have an ASP.NET MVC form for adding a module to a site. The view has a strongly typed ViewModel with the properties "Name" and "Content". On this form I have a sub-form for adding a section to the module. The sub-form has fields labeled "Name" and "Content" as they apply to the section object. However, unfortunately for me, the built-in HTML helper functions appear to be autobinding these fields to the matching property values on the view model, even though they are intended to apply to a completely different object.</p>
<p>Example classes:</p>
<pre><code>public class Module
{
public string Name {get;set;}
public string Content {get;set;}
// ...
}
public class Section
{
public string Name {get;set;}
public string Content {get;set;}
// ...
}
</code></pre>
<p>Form:</p>
<pre><code><%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Module>" %>
<!-- rest of page here -->
<%using (var form = Html.BeginForm("AddSection", "Modules")){%>
<ul class="form">
<li>
<label for="Number">Section Number:</label>
<%=Html.TextBox("Number", null, new { size=5, maxlength=5 })%>
<%=Html.ValidationMessage("Number")%>
</li>
<li>
<label for="Name">Section Name:</label>
<%=Html.TextBox("Name")%>
<%=Html.ValidationMessage("Name")%>
</li>
<li>
<div style="width: 75%;">
<label for="Content">Section Content: (<a href="http://textile.thresholdstate.com" target="_blank">formatting help</a>)</label>
<%=Html.TextArea("Content", null, new { @class = "text-entry" })%>
<%=Html.ValidationMessage("Content")%>
</div>
</li>
<li>
<div style="width: 75%;">
<label>Content Preview: (<a href="#" onclick="togglePreviewPane(true); return false;">Show / Hide</a>)</label>
<div id="PreviewBox" class="black-border text-entry">&nbsp;</div>
</div>
</li>
</ul>
<input type="hidden" id="ModuleID" name="ModuleID" value="<%=Model.ID%>" />
<input type="submit" id="SubmitButton" name="SubmitButton" value="Add Section" />
<%}%>
</code></pre>
<p>I would expect that the Name and Content inputs start out blank, but the html helpers seem to be prebinding to the page's view model without my direction. How can I stop this...</p>
http://stackoverflow.com/questions/1615351/why-cant-i-be-compact-with-my-desired-c-polymorphism/1615425#16154257Answer by Chris for why can't I be compact with my desired C# polymorphism?Chris2009-10-23T19:23:27Z2009-11-03T07:07:48Z<p>Everyone seems to be suggesting the following:</p>
<pre><code>XmlWriter writer = String.IsNullOrEmpty(outfile)
? XmlWriter.Create(Console.Out)
: XmlWriter.Create(outfile);
</code></pre>
<p>However, this is also doable:</p>
<pre><code>XmlWriter writer = XmlWriter.Create(string.IsNullOrEmpty(outfile)
? Console.Out : new StreamWriter(outfile));
</code></pre>
<p>The latter is closer to your original attempt and, IMO, more compact.</p>
http://stackoverflow.com/questions/1665657/storing-passwords-for-authentication-against-another-system/1665680#16656802Answer by Chris for Storing passwords for authentication against another systemChris2009-11-03T07:00:12Z2009-11-03T07:00:12Z<p>DPAPI cannot usually be used in web farms - the key store is specific to the machine. You didn't specify if certain users share one set of credentials while another user shares another set of credentials. If all users share the same set of credentials, store it in the web.config and be done with it. Secure the credentials using either the configuration encryption API or simple ACLs on the web.config file.</p>
<p>If different users have different third party system credentials, I'd store the credentials with the user, using a hash of the user's password + a salt as the encryption key. Then, even if a malicious user gets your database, they'd have to be able to first decrypt your user's password before even attempting to hack the third party password. The salt adds an additional layer of difficulty in doing so.</p>
http://stackoverflow.com/questions/1665660/ideal-class-name-for-static-class-for-misc-functionalities/1665663#16656630Answer by Chris for Ideal class name for static class for misc functionalitiesChris2009-11-03T06:56:24Z2009-11-03T06:56:24Z<p>UtilityManager..?</p>
http://stackoverflow.com/questions/1650365/net-class-design-question9.NET class design questionChris2009-10-30T15:06:58Z2009-10-30T15:53:54Z
<p>I have a class called Question that has a property called Type. Based on this type, I want to render the question to html in a specific way (multiple choice = radio buttons, multiple answer = checkboxes, etc...). I started out with a single RenderHtml method that called sub-methods depending on the question type, but I'm thinking separating out the rendering logic into individual classes that implement an interface might be better. However, as this class is persisted to the database using NHibernate and the interface implementation is dependent on a property, I'm not sure how best to layout the class.</p>
<p>The class in question:</p>
<pre><code>public class Question
{
public Guid ID { get; set; }
public int Number { get; set; }
public QuestionType Type { get; set; }
public string Content { get; set; }
public Section Section { get; set; }
public IList<Answer> Answers { get; set; }
}
</code></pre>
<p>Based on the QuestionType enum property, I'd like to render the following (just an example):</p>
<pre><code><div>[Content]</div>
<div>
<input type="[Depends on QuestionType property]" /> [Answer Value]
<input type="[Depends on QuestionType property]" /> [Answer Value]
<input type="[Depends on QuestionType property]" /> [Answer Value]
...
</div>
</code></pre>
<p>Currently, I have one big switch statement in a function called RenderHtml() that does the dirty work, but I'd like to move it to something cleaner. I'm just not sure how.</p>
<p>Any thoughts?</p>
<p><strong>EDIT: Thanks to everyone for the answers!</strong></p>
<p>I ended up going with the strategy pattern using the following interface:</p>
<pre><code>public interface IQuestionRenderer
{
string RenderHtml(Question question);
}
</code></pre>
<p>And the following implementation:</p>
<pre><code>public class MultipleChoiceQuestionRenderer : IQuestionRenderer
{
#region IQuestionRenderer Members
public string RenderHtml(Question question)
{
var wrapper = new HtmlGenericControl("div");
wrapper.ID = question.ID.ToString();
wrapper.Attributes.Add("class", "question-wrapper");
var content = new HtmlGenericControl("div");
content.Attributes.Add("class", "question-content");
content.InnerHtml = question.Content;
wrapper.Controls.Add(content);
var answers = new HtmlGenericControl("div");
answers.Attributes.Add("class", "question-answers");
wrapper.Controls.Add(answers);
foreach (var answer in question.Answers)
{
var answerLabel = new HtmlGenericControl("label");
answerLabel.Attributes.Add("for", answer.ID.ToString());
answers.Controls.Add(answerLabel);
var answerTag = new HtmlInputRadioButton();
answerTag.ID = answer.ID.ToString();
answerTag.Name = question.ID.ToString();
answer.Value = answer.ID.ToString();
answerLabel.Controls.Add(answerTag);
var answerValue = new HtmlGenericControl();
answerValue.InnerHtml = answer.Value + "<br/>";
answerLabel.Controls.Add(answerValue);
}
var stringWriter = new StringWriter();
var htmlWriter = new HtmlTextWriter(stringWriter);
wrapper.RenderControl(htmlWriter);
return stringWriter.ToString();
}
#endregion
}
</code></pre>
<p>The modified Question class uses an internal dictionary like so:</p>
<pre><code>public class Question
{
private Dictionary<QuestionType, IQuestionRenderer> _renderers = new Dictionary<QuestionType, IQuestionRenderer>
{
{ QuestionType.MultipleChoice, new MultipleChoiceQuestionRenderer() }
};
public Guid ID { get; set; }
public int Number { get; set; }
public QuestionType Type { get; set; }
public string Content { get; set; }
public Section Section { get; set; }
public IList<Answer> Answers { get; set; }
public string RenderHtml()
{
var renderer = _renderers[Type];
return renderer.RenderHtml(this);
}
}
</code></pre>
<p>Looks pretty clean to me. :)</p>
http://stackoverflow.com/questions/1643532/c-libraries-with-hidden-gems4C# libraries with hidden gemsChris2009-10-29T12:57:34Z2009-10-30T12:04:08Z
<p>Up until yesterday, I had no idea iTextSharp included a full set of barcode classes. I discovered this through a chance answer to a question here on SO. Although I'd used iTextSharp in an earlier incarnation for generating some overlay text on a template PDF, I'd never fully explored the library, nor do I even recall Barcode support being available at the time.</p>
<p>So I ask you, what are some other .NET framework libraries that you know of that have hidden gems or features that are useful outside of the core purpose of the library?</p>
<p>Clarification: this question is specifically targeted to frameworks outside of the .NET BCL.</p>
http://stackoverflow.com/questions/1644357/starting-a-new-site-should-i-use-a-template-or-write-from-scratch/1644379#16443791Answer by Chris for Starting a new Site - Should I "Use a Template" or "Write from Scratch"Chris2009-10-29T15:06:27Z2009-10-29T15:06:27Z<p>If you're talking about a blog site, there's no need to reinvent the wheel unless you just <em>want</em> to. There are plenty of capable blog engines in any language of your choice. Go with one and extend it if necessary.</p>
http://stackoverflow.com/questions/1639394/web-server-performance-test-tool/1641773#16417732Answer by Chris for Web server performance/test toolChris2009-10-29T05:31:42Z2009-10-29T05:31:42Z<p>Like Ian said, ApacheBench is a good starting tool. If you find you need something a bit more programmable or robust, the next free step up is definitely JMeter, which also happens to be an Apache Foundation project, and is a Java client application that can record a series of user actions on your site via built in proxy server and then replay them for X users / N minutes / Y iterations / etc... to simulate real traffic. You can even record different activity segments and play them back at alternate ratios (i.e. 20% submit content, 80% read content)</p>
http://stackoverflow.com/questions/1639313/auto-generating-dal-in-an-asp-net-application/1639330#1639330-1Answer by Chris for Auto generating DAL in an ASP.NET applicationChris2009-10-28T18:51:47Z2009-10-28T18:51:47Z<p>Linq2SQL or SubSonic both work well for this purpose.</p>
<p>Edit: Linq2Sql is supposedly "dead", but it's still quite useful in its current form. I just wouldn't make any long term investments in it. </p>
http://stackoverflow.com/questions/1635509/why-it-is-necessary-to-create-only-single-instance-of-sessionfactory/1635515#16355153Answer by Chris for Why it is necessary to create only single instance of SessionFactory ?Chris2009-10-28T06:36:56Z2009-10-28T06:36:56Z<p>The process of creating a session factory is expensive, performance wise. The performance gain from using a single static session factory is at least an order of magnitude. You can certainly create a new factory on each request, if you'd like, but it would be incredibly wasteful to do so.</p>
http://stackoverflow.com/questions/1633672/how-do-i-fork-a-stream-in-net/1633694#16336942Answer by Chris for How do I "fork" a Stream in .NET?Chris2009-10-27T21:10:23Z2009-10-27T21:10:23Z<p>You can:</p>
<ul>
<li>Call M.ToArray() to get the stream as an array of bytes.</li>
<li>Subclass BinaryWriter and override the Dispose method to prevent closing of the child stream</li>
</ul>
http://stackoverflow.com/questions/1613700/name-of-a-class-that-wraps-an-external-process/1613731#16137310Answer by Chris for Name of a class that wraps an external process?Chris2009-10-23T14:11:24Z2009-10-23T14:11:24Z<p>WorkerRunner...</p>
http://stackoverflow.com/questions/1608854/what-is-the-difference-between-antixss-htmlencode-and-httputility-htmlencode/1613667#16136671Answer by Chris for What is the difference between AntiXss.HtmlEncode and HttpUtility.HtmlEncode?Chris2009-10-23T14:01:07Z2009-10-23T14:01:07Z<p>Most XSS vulnerabilities (any type of vulnerability, actually) are based purely on the fact that existing security did not "expect" certain things to happen. Whitelist-only approaches are more apt to handle these scenarios by default. </p>
http://stackoverflow.com/questions/1603398/when-should-you-use-page-databind-versus-control-databind/1603422#16034220Answer by Chris for When should you use Page.DataBind() versus Control.DataBind()?Chris2009-10-21T20:30:58Z2009-10-21T20:30:58Z<p>In an ASP.NET page, you can bind directly to public/protected properties of your page's code-behind class. For example:</p>
<pre><code><form id="form1" runat="server"><%#HtmlUtility.HtmlEncode(MyProperty.ToString())%></form>
</code></pre>
<p>In this case, there is no specific control to call .DataBind() on - the page itself is the control. It just so happens that calling Page.DataBind() will also call DataBind() on all child controls, so if you're already doing a Page.DataBind(), there's no need to data bind the controls individually.</p>
http://stackoverflow.com/questions/1592274/mysql-performance2mysql performanceChris2009-10-20T03:19:26Z2009-10-20T17:30:07Z
<p>I'm testing MySQL as a replacement for SQL server and I'm running into something really strange. I'm testing both inserts and reads, and maxing out around 50 queries per second either way.</p>
<p>My test table looks like:</p>
<pre><code>DROP TABLE IF EXISTS `webanalytics`.`test`;
CREATE TABLE `webanalytics`.`test` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(45) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1001 DEFAULT CHARSET=utf8;
</code></pre>
<p>And my C# test program looks like:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MySql.Data.MySqlClient;
using System.Diagnostics;
namespace ConsoleApplication1
{
class Program
{
const int QUERY_COUNT = 1000;
const string CONNECTION_STRING = "server=localhost;database=WebAnalytics;uid=root;pwd=root";
static void Main(string[] args)
{
using (var db = new MySqlConnection(CONNECTION_STRING))
{
db.Open();
using (var cmd = db.CreateCommand())
{
cmd.CommandText = "insert into Test(Name) values (?Name);";
cmd.Parameters.AddWithValue("?Name", "");
var timer = new Stopwatch();
timer.Start();
for (var i = 0; i < QUERY_COUNT; i++)
{
cmd.Parameters["?Name"].Value = "Test" + i;
cmd.ExecuteNonQuery();
}
timer.Stop();
var rate = QUERY_COUNT / (timer.ElapsedMilliseconds / 1000);
Console.WriteLine("Query rate: {0}/s", rate);
}
}
}
}
}
</code></pre>
<p>Seems like a rather simple test case. On the install for MySQL, I'm running 32bit with default OLTP standard server settings, though I had to adjust the buffer pool for innodb down from 2G to 1G. I don't get where the bottleneck is. Is the MySQL data connector buggy? A dottrace profile session reveals the following:</p>
<p><img src="http://img18.imageshack.us/img18/6812/performance.png" alt="alt text" /></p>
<p>I don't know the inner details of the MySQL connector, but the calls to mysqldatareader.nextresult confuse me. Why is it reading when I'm executing an insert?</p>
http://stackoverflow.com/questions/1585619/create-a-mysql-primary-key-without-a-clustered-index2Create a mysql primary key without a clustered index?Chris2009-10-18T18:18:41Z2009-10-18T18:30:03Z
<p>I'm a SQL Server guy experimenting with MySQL for a large upcoming project (due to licensing) and I'm not finding much information in the way of creating a primary key without a clustered index. All the documentation I've read says on 5.1 says that a primary key is automatically given a clustered index. Since I'm using a binary(16) for the primary key column (GUID), I'd rather not have a clustered index on it. So...</p>
<ol>
<li>Is it possible to create a primary key without a clustered index? I could always put the clustered index on the date_created column instead, but how do I prevent mysql from creating the clustered index on the primary key automatically?</li>
<li>If not possible, will I be OK performance wise with a unique index on the GUID column and no primary key on the table? I'm planning to use nhibernate here, so I'm not sure if having no primary key is allowed (haven't got that far yet).</li>
</ol>
http://stackoverflow.com/questions/65673/comet-implementation-for-asp-net/1580974#15809740Answer by Chris for Comet implementation for ASP.NET?Chris2009-10-17T00:04:24Z2009-10-17T00:04:24Z<p>I once used a chat site long ago that utilized a custom built http streaming server. I actually reproduced that software at one point out of sheer curiosity, and it's easy enough to do, I think. I would never try to implement a similar type of "infinite request" in IIS, especially in ASP.NET, because the requests tie up a thread pool thread (or IO thread, if asynchronous handlers are used) indefinitely, which means you can only handle so much per server as your thread pool configuration allows.</p>
<p>If I had a strong legitimate need for such functionality, I'd honestly write a custom http server for it.</p>
<p>I know that doesn't really answer your question, but I thought the input might be relevant.</p>
http://stackoverflow.com/questions/1578562/where-to-store-password-in-runtime/1578636#15786365Answer by Chris for Where to store password in runtime?Chris2009-10-16T15:04:25Z2009-10-16T15:04:25Z<p>If you're that worried about it, use a <a href="http://msdn.microsoft.com/en-us/library/system.security.securestring.aspx" rel="nofollow">SecureString</a> in the Application object. However, I feel compelled to warn you that encrypted passwords in config files are a maintenance nightmare. You should really reconsider storing it in plain text in the web.config and simply denying access to the web.config file for all but sysadmins and the asp.net worker process user (probably NETWORK SERVICE)</p>
http://stackoverflow.com/questions/1578070/what-options-are-there-for-a-quick-embedded-db-in-net/1578108#15781082Answer by Chris for What options are there for a quick embedded DB in .NET?Chris2009-10-16T13:41:10Z2009-10-16T13:41:10Z<p>I second the vote for SQLite. SQL Server CE is far too heavy for any embedded purposes unless you need easy synchronization with a central database - then it's fantastic.</p>
http://stackoverflow.com/questions/1569846/whats-the-worst-commit-message-youve-seen/1569850#15698501Answer by Chris for What's the worst commit message you've seen?Chris2009-10-15T01:26:35Z2009-10-15T01:26:35Z<p>My favorite - "work in progress" - usually when I'm checking in something at the office so I can check it out at home and continue working.</p>
http://stackoverflow.com/questions/1821762/image-vertical-alignment-issue/1821861#1821861Comment by Chris on image vertical alignment issueChris2009-11-30T19:48:30Z2009-11-30T19:48:30ZInline-block was an attempted fix that had no effect. Firebug reports no margin / padding. I actually want it middle aligned. I pointed out the baseline as an illustration of the difference. Nothing happenese when I merge the two into one tag.http://stackoverflow.com/questions/1790316/nhibernate-criteria-query-questionComment by Chris on NHibernate criteria query questionChris2009-11-24T15:36:41Z2009-11-24T15:36:41Z@Mike: Yes, I want to stick to strongly typed queries, hence my aversion to HQL.
@Mauricio, I realize I'm going to have to execute the queries either way. Is there a way to do related queries (one that depends on another) using MultiCriteria? I didn't find much documentation on it.http://stackoverflow.com/questions/1781275/render-aspx-page-at-runtime-from-databaseComment by Chris on Render ASPX page at runtime from databaseChris2009-11-23T05:51:35Z2009-11-23T05:51:35ZThe input from Gonzalo and Rex below is accurate, but be aware that implementing a new VirtualPathProvider subclass requires full trust permissions (or did at one point) and may not be runnable in a shared hosting environment.http://stackoverflow.com/questions/1765359/css-form-layout-questionComment by Chris on CSS form layout questionChris2009-11-19T18:40:06Z2009-11-19T18:40:06ZEh, I thought it was obvious that the text for the labels surrounding the check boxes would appear beside the check boxes. Sorry if that intention wasn't clear.http://stackoverflow.com/questions/1765359/css-form-layout-questionComment by Chris on CSS form layout questionChris2009-11-19T18:29:17Z2009-11-19T18:29:17ZUh, yeah. I was just trying to show the layout in the second set of examples. Content is irrelevant.http://stackoverflow.com/questions/1750369/sql-server-query-runs-slower-from-ado-net-than-in-ssmsComment by Chris on SQL Server query runs slower from ADO.NET than in SSMSChris2009-11-17T18:56:13Z2009-11-17T18:56:13ZYeah I'm connecting with different credentials. Unfortunately, for now, the problem has gone away, so I can't test with identical connection settings until the problem rears its head again.http://stackoverflow.com/questions/1750369/sql-server-query-runs-slower-from-ado-net-than-in-ssms/1750488#1750488Comment by Chris on SQL Server query runs slower from ADO.NET than in SSMSChris2009-11-17T18:39:38Z2009-11-17T18:39:38ZI bet it was the connection settings. I was logging in to SSMS using windows auth while ASP.NET uses the sql user. That clears that up. Now, on to catching the bad execution plan in action.. :(http://stackoverflow.com/questions/1750369/sql-server-query-runs-slower-from-ado-net-than-in-ssms/1750488#1750488Comment by Chris on SQL Server query runs slower from ADO.NET than in SSMSChris2009-11-17T18:02:39Z2009-11-17T18:02:39ZThe number of reads for the "bad" query was significantly higher than the number of reads for the query from SSMS. I too thought that SSMS should use the same query plan if the exact same query was entered, but is there a scenario in which this may not be the case?http://stackoverflow.com/questions/1735389/joomla-or-drupal/1736023#1736023Comment by Chris on JOOMLA or DRUPAL?Chris2009-11-15T00:32:48Z2009-11-15T00:32:48ZIf you're going to copy / paste someone else's work, the least you could do is link to the original.http://stackoverflow.com/questions/1730134/asp-net-mvc-email/1731460#1731460Comment by Chris on ASP.NET MVC EmailChris2009-11-14T01:06:21Z2009-11-14T01:06:21ZThe initial design doesn't support nested templates, but I suppose you could modify the Render method of the NVelocity class to recursively render the templates in whatever way suited your need. Alternatively, you could download the Castle source code and modify the core velocity engine code, but that seems a bit much and it ought to be easier to extend it through the wrapper class.http://stackoverflow.com/questions/136056/ide-or-text-editor/1596027#1596027Comment by Chris on IDE or Text Editor?Chris2009-11-13T19:34:58Z2009-11-13T19:34:58Z1. This is not the place to peddle your product. B. I can't believe you charge for individual language support in a text editor.http://stackoverflow.com/questions/1718463/what-are-the-real-world-pros-and-cons-of-each-of-the-major-mocking-frameworks/1718509#1718509Comment by Chris on What are the real-world pros and cons of each of the major mocking frameworks?Chris2009-11-11T22:29:08Z2009-11-11T22:29:08ZI started out with RhinoMocks and quickly moved to Moq once I heard about it as well. Moq is just so gosh darn easy to use.http://stackoverflow.com/questions/1711290/how-to-programatically-identify-a-file-as-a-net-assembly/1711320#1711320Comment by Chris on how to programatically identify a file as a .NET assembly?Chris2009-11-10T21:36:27Z2009-11-10T21:36:27ZIf you read further down that same page, there are better ways documented as well. In addition, I find your all caps statement rather annoying. Some hacks such as this one can be used to good benefit in combination with a fail-safe. The number of assemblies being checked by the OP probably doesn't warrant a second thought, but in case it does, it's always good to try to avoid relying on exceptions as a part of normal process flow. If the assembly can be checked faster using a hack first, why not try it?http://stackoverflow.com/questions/1702180/how-do-you-keep-your-backing-fields-organized-styles-patterns/1702202#1702202Comment by Chris on How do you keep your backing fields organized? (Styles/Patterns)Chris2009-11-09T18:52:19Z2009-11-09T18:52:19Z@Alex because my personal preference is so abhorrent as to deserve your explicit disapproval, and I care greatly about such too! :/http://stackoverflow.com/questions/1676178/simple-sort-verification-for-unit-testing-an-order-byComment by Chris on Simple sort verification for unit testing an ORDER BY?Chris2009-11-04T20:04:44Z2009-11-04T20:04:44ZBe careful that you're not testing things that don't need to be tested. Are you ensuring that the query contains the expected order by clause, or are you merely checking to see that the order by clause works? The latter is wasteful.