User Keltex - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:42:02Z http://stackoverflow.com/feeds/user/28260 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1771806/do-the-nerd-dinner-models-use-best-practices-for-disposing-objects 2 Do the Nerd Dinner models use best practices for disposing objects? Keltex 2009-11-20T16:56:40Z 2009-11-20T17:02:17Z <p>I've been looking at the <a href="http://nerddinner.codeplex.com/" rel="nofollow">Nerd Dinner</a> code and one thing they do in their models, is create an instance of the DataContext like this:</p> <pre><code>public class DinnerRepository { private NerdDinnerDataContext db = new NerdDinnerDataContext(); public IQueryable&lt;Dinner&gt; FindUpcomingDinners() { return from dinner in db.Dinners where dinner.EventDate &gt; DateTime.Now orderby dinner.EventDate select dinner; } // more methods below } </code></pre> <p>These are used in the controllers like this:</p> <pre><code>public class DinnersController : Controller { DinnerRepository dinnerRepository = new DinnerRepository(); public ActionResult Index() { var dinners = dinnerRepository.FindUpcomingDinners().ToList(); return View("Index", dinners); } } </code></pre> <p>But it doesn't seem that NerdDinnerDataContext ever gets disposed. Is this a problem that I should worry about? Or is this pattern OK?</p> <p><em>Note: not the latest Nerd Dinner code, I know</em> </p> http://stackoverflow.com/questions/1652496/should-i-encode-flash-videos-using-cbr-or-vbr-for-streaming 0 Should I encode flash videos using cbr or vbr for streaming? Keltex 2009-10-30T21:44:17Z 2009-11-01T04:04:23Z <p>We are going to be hosting some videos that will be streamed (not progressive download). Which is recommended? CBR (constant bit rate) or VBR (variable bit rate) encoding? </p> http://stackoverflow.com/questions/813793/screwturn-wiki-and-custom-asp-net-membership-provider 1 ScrewTurn wiki and custom asp.net membership provider Keltex 2009-05-02T00:20:15Z 2009-10-30T22:16:18Z <p>I'm thinking of implementing the <a href="http://www.screwturn.eu/" rel="nofollow">Screwturn Wiki</a> for documenting the administration area of a website. I would like to use the existing custom asp.net membership provider so that access to the wiki is seamless. So it would look something like this:</p> <ul> <li><code>http://www.example.com/admin</code> - Existing administrative area</li> <li><code>http://www.example.com/admin/wiki</code> - Wiki</li> </ul> <p>There's a plugin called <a href="http://stcez06.kiwipad.com/Default.aspx?Page=HTTPUserProviderPlugin&amp;AspxAutoDetectCookieSupport=1" rel="nofollow">HTTPUserProvider Plugin</a> which allows you to authenticate on another webserver through a web request, but this seems like kind of a hack.</p> <p>Anybody have experience with this scenario?</p> http://stackoverflow.com/questions/813793/screwturn-wiki-and-custom-asp-net-membership-provider/1652607#1652607 0 Answer by Keltex for ScrewTurn wiki and custom asp.net membership provider Keltex 2009-10-30T22:16:18Z 2009-10-30T22:16:18Z <p>They have one now:</p> <p><a href="http://www.screwturn.eu/Customize.UsersPluginsV2.ashx#ASPNet%5FMembership%5FUser%5FProvider%5F33" rel="nofollow">http://www.screwturn.eu/Customize.UsersPluginsV2.ashx#ASPNet_Membership_User_Provider_33</a></p> http://stackoverflow.com/questions/1498498/windows-service-that-runs-periodically/1498609#1498609 1 Answer by Keltex for Windows Service that runs Periodically Keltex 2009-09-30T14:50:10Z 2009-09-30T14:50:10Z <p>Blog.StackOverflow.com has an interesting article on using cache expiration to handle periodic tasks:</p> <p><a href="http://blog.stackoverflow.com/2008/07/easy-background-tasks-in-aspnet/" rel="nofollow">http://blog.stackoverflow.com/2008/07/easy-background-tasks-in-aspnet/</a></p> http://stackoverflow.com/questions/1394346/how-to-display-image-on-linkbutton-to-look-attractive-in-asp-net/1394401#1394401 0 Answer by Keltex for How to Display image on Linkbutton to look attractive in asp.net Keltex 2009-09-08T14:40:40Z 2009-09-08T14:40:40Z <p>Why not use <code>ImageButton</code>?</p> http://stackoverflow.com/questions/1353824/no-login-error-text-for-role-based-authentication-in-asp-net/1353859#1353859 2 Answer by Keltex for No login error text for role based authentication in ASP.NET Keltex 2009-08-30T13:23:36Z 2009-08-30T13:23:36Z <p>On thing you can do is check the ReturnUrl query string parameter and if it's you "denied" folder, redirect the user to either an error page or an allowed login page. Like this:</p> <pre><code>protected void frmLogin_LoggedIn(object sender, EventArgs e) { if (!User.IsInRole("AllowedRole") &amp;&amp; InRestrictedArea(Request.QueryString["ReturnUrl"])) { Response.Redirect("Not-Allowed-Here.aspx"); } } </code></pre> <p>Define <code>InRestrictedArea</code> to check if the requested area is where they aren't allowed.</p> http://stackoverflow.com/questions/1352461/is-there-a-good-way-to-store-enums-from-the-database/1352549#1352549 2 Answer by Keltex for Is there a good way to store enums from the database? Keltex 2009-08-29T22:26:03Z 2009-08-29T22:26:03Z <p>Use the <code>Cache</code> object and store the database results in the cache.</p> http://stackoverflow.com/questions/956458/how-do-i-setup-iis-with-a-cookieless-domain-to-improve-performance 4 How do I setup IIS with a cookieless domain to improve performance? Keltex 2009-06-05T15:22:48Z 2009-08-26T18:14:20Z <p>I was reading in google's documentation their new <a href="http://code.google.com/speed/page-speed/docs/using.html" rel="nofollow">pagespeed</a> plugin, that they recommend using <a href="http://code.google.com/speed/page-speed/docs/request.html#ServeFromCookielessDomain" rel="nofollow">cookieless domains</a> to improve performance:</p> <blockquote> <p>Static content, such as images, JS and CSS files, don't need to be accompanied by cookies, as there is no user interaction with these resources. You can decrease request latency by serving static resources from a domain that doesn't serve cookies. </p> </blockquote> <p>Does anybody know how to do this in IIS?</p> http://stackoverflow.com/questions/1313725/how-can-i-do-an-if-statement-inside-a-repeater/1313764#1313764 1 Answer by Keltex for How can i do an if statement inside a repeater Keltex 2009-08-21T19:17:17Z 2009-08-21T19:17:17Z <p>You could do this with user controls:</p> <pre><code>&lt;ItemTemplate&gt; &lt;uc:Content1 runat='server' id='content1' visible='&lt;%# Container.DataItem("property") == "test" %&gt;'/&gt; &lt;uc:Content2 runat='server' id='content2' visible='&lt;%# Container.DataItem("property") != "test" %&gt;'/&gt; &lt;/ItemTemplate&gt; </code></pre> http://stackoverflow.com/questions/1311850/continuous-string-not-getting-wrapped-in-td/1311905#1311905 0 Answer by Keltex for Continuous string not getting wrapped in td Keltex 2009-08-21T13:19:53Z 2009-08-21T13:19:53Z <p>Use the <a href="http://www.quirksmode.org/oddsandends/wbr.html" rel="nofollow"><code>&lt;wbr&gt;</code></a> tag in your text every few characters (20? 30? you'll need to experiment). This will allow breaks in your text without spaces. Like this:</p> <pre><code>&lt;td&gt;LongLongLong&lt;wbr&gt;TextTextText&lt;/td&gt; </code></pre> <p>This will be all strung together unless a break is needed.</p> http://stackoverflow.com/questions/1300951/start-learning-c-without-knowing-c/1300982#1300982 2 Answer by Keltex for Start learning C# without knowing C ? Keltex 2009-08-19T16:05:50Z 2009-08-19T16:05:50Z <p>My question would be are you trying to <em>choose a first language to learn programming?</em> (C# being an option) or do you know another language and think you might need to learn C before C#?</p> <p>If you aren't trying to learn programming, then I would say you can skip C and go straight to C#. But for a first language, I would advise neither. Try for a scripting language that you can really writing code quickly. </p> http://stackoverflow.com/questions/1300492/dropdownlist-results-in-gridview/1300543#1300543 0 Answer by Keltex for Dropdownlist results in gridview Keltex 2009-08-19T15:03:41Z 2009-08-19T15:03:41Z <p>What about binding the Visible attribute to <code>Page.IsPostBack</code> (note this is in C# since I'm not familiar with the syntax for VB.NET... I'm sure something similar would work):</p> <pre><code>&lt;ItemTemplate&gt; &lt;asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="SqlAnswer" DataTextField="torf" DataValueField="torf" Visible='&lt;%# !Page.IsPostBack %/&gt;&gt;&lt;/asp:DropDownList&gt; &lt;asp:Label ID="Label1" runat="server" Text="" Visible='&lt;%# Page.IsPostBack %/&gt;&lt;/asp:Label&gt; &lt;/ItemTemplate&gt; </code></pre> http://stackoverflow.com/questions/1294387/how-to-do-opacity-for-text/1294413#1294413 2 Answer by Keltex for How to do opacity for Text? Keltex 2009-08-18T14:54:18Z 2009-08-18T14:54:18Z <p>Opacity is a CSS 3 propery. It's expressed from 0 - 1.0. So 50% opacity would be like this:</p> <pre><code>.xxx { opacity: 0.5; } </code></pre> <p>It's also not supported in many browsers (IE 6 &amp; IE 7), but there are some workarounds. Examples here: <a href="http://webdesign.about.com/od/css3/a/aa121306.htm" rel="nofollow">http://webdesign.about.com/od/css3/a/aa121306.htm</a></p> http://stackoverflow.com/questions/1279416/why-my-httpwebrequest-post-to-myhandler-ashx-is-rejected-with-status-code-401/1279480#1279480 0 Answer by Keltex for Why my httpwebrequest post to myhandler.ashx is rejected with status code 401 Keltex 2009-08-14T18:39:36Z 2009-08-14T18:39:36Z <p>Looking at your ProcessRequest(), you do the following:</p> <pre><code>string returnURL = context.Request.ServerVariables["HTTP_REFERER"]; </code></pre> <p>Based on how you are calling it with <code>HttpWebRequest</code>, this variable will be null. Then when you create your msgReturn, it will look something like this:</p> <pre><code>?n=XXX%m=YYY </code></pre> <p>When you redirect to this URL, it will probably not be found which is what is returning the 401.</p> http://stackoverflow.com/questions/1272592/running-net-2-0-3-5-web-sites-in-iis-7/1272598#1272598 5 Answer by Keltex for Running .NET 2.0 & 3.5 web sites in IIS 7 Keltex 2009-08-13T15:11:56Z 2009-08-13T15:11:56Z <p>If it's set to run .NET 2.0, it will run .NET 3.5. There is no separate setting for .NET 3.5.</p> http://stackoverflow.com/questions/1257897/equation-string-in-vb-net/1257930#1257930 1 Answer by Keltex for equation string in vb .net Keltex 2009-08-11T00:25:56Z 2009-08-11T00:25:56Z <p>Somebody's already done this (including source code):</p> <blockquote> <p><a href="http://community.bartdesmet.net/blogs/bart/archive/2006/10/11/4513.aspx" rel="nofollow">http://community.bartdesmet.net/blogs/bart/archive/2006/10/11/4513.aspx</a></p> </blockquote> http://stackoverflow.com/questions/1252706/security-when-specifying-users-in-web-config/1252718#1252718 1 Answer by Keltex for Security when specifying users in web.config Keltex 2009-08-10T00:51:00Z 2009-08-10T00:51:00Z <p>I think it's fine for little simple sites. But I would certainly encrypt the passwords, like this:</p> <pre><code>&lt;credentials passwordFormat = "SHA1"&gt; &lt;user name="UserName1" password="SHA1EncryptedPassword1"/&gt; &lt;user name="UserName2" password="SHA1EncryptedPassword2"/&gt; &lt;user name="UserName3" password="SHA1EncryptedPassword3"/&gt; &lt;/credentials&gt; </code></pre> <p>More information on this here: <a href="http://msdn.microsoft.com/en-us/library/e01fc50a.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/e01fc50a.aspx</a></p> http://stackoverflow.com/questions/1245773/asp-net-object-caching-how-much-is-too-much/1245779#1245779 1 Answer by Keltex for ASP.NET object caching - how much is too much? Keltex 2009-08-07T16:38:26Z 2009-08-07T16:38:26Z <p>1) I would cache them. You can always set <code>CacheItemPriority.Low</code> if you are worrying about the cache 'filling up'</p> <p>2) Yes the cache is designed to be accessed regularly. It can lead to huge performance improvements.</p> http://stackoverflow.com/questions/1223933/bust-iframes-accurately-when-implementing-diggbar-or-facebookbar/1223980#1223980 1 Answer by Keltex for Bust iFrames accurately when implementing DiggBar or FacebookBar? Keltex 2009-08-03T18:49:20Z 2009-08-03T18:49:20Z <p>You can't. Because of browser cross site-scripting security, your bar which sits in its own frame cannot access any other frames and determine their URLs.</p> http://stackoverflow.com/questions/1223654/can-i-display-a-pdf-but-not-allow-linking-to-it-in-a-website/1223677#1223677 5 Answer by Keltex for Can I display a PDF, but not allow linking to it in a website? Keltex 2009-08-03T17:50:46Z 2009-08-03T17:50:46Z <p>To load a PDF file from the disk into a buffer:</p> <pre><code>byte [] buffer; using(FileStream fileStream = new FileStream(Filename, FileMode.Open)) { using (BinaryReader reader = new BinaryReader(fileStream)) { buffer = reader.ReadBytes((int)reader.BaseStream.Length); } } </code></pre> <p>Then you can create your <code>MemoryStream</code> like this:</p> <pre><code>using (MemoryStream msReader = new MemoryStream(buffer, false)) { // your code here. } </code></pre> <p>But if you already have your data in memory, you don't need the <code>MemoryStream</code>. Instead do this:</p> <pre><code> Response.ContentType = "application/pdf"; Response.AddHeader("Content-Length", buffer.Length.ToString()); Response.BinaryWrite(buffer); //End the response Response.End(); streamDoc.Close(); </code></pre> http://stackoverflow.com/questions/1219759/crop-a-picture-in-c-with-the-use-of-rectangle-box/1219799#1219799 0 Answer by Keltex for Crop a picture in C# with the use of rectangle box Keltex 2009-08-02T20:45:28Z 2009-08-02T20:45:28Z <p>(My answer assumes a web application using ASP.NET):</p> <p>You probably needs some javascript library to get the dimensions of the pic to crop. This jQuery plugin will do the trick:</p> <blockquote> <p><a href="http://www.webresourcesdepot.com/jquery-image-crop-plugin-jcrop/" rel="nofollow">http://www.webresourcesdepot.com/jquery-image-crop-plugin-jcrop/</a></p> </blockquote> <p>Then here's an article on Stack Overflow that shows how to crop the image:</p> <blockquote> <p><a href="http://stackoverflow.com/questions/734930/how-to-crop-an-image-using-c">http://stackoverflow.com/questions/734930/how-to-crop-an-image-using-c</a></p> </blockquote> http://stackoverflow.com/questions/1197444/how-to-get-a-google-map-to-use-100-of-its-parent-container/1197476#1197476 1 Answer by Keltex for How to get a google map to use 100% of its parent container? Keltex 2009-07-29T00:25:51Z 2009-07-29T00:25:51Z <p><a href="http://code.google.com/apis/maps/documentation/introduction.html" rel="nofollow">Google says</a>:</p> <blockquote> <p>Unless you specify a size explicitly for the map using GMapOptions in the constructor, the map implicitly uses the size of the container to size itself.</p> </blockquote> <p>So set the size of your map container fill all available space:</p> <pre><code>&lt;div id="map2" style="width: 100%; height: 100%"&gt;&lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1190924/how-to-create-overlapping-header-content-like-facebooks/1190985#1190985 3 Answer by Keltex for How to create overlapping header/content like Facebook's Keltex 2009-07-27T22:18:53Z 2009-07-27T22:18:53Z <p>I suggest that you use <a href="http://getfirebug.com/" rel="nofollow">Firebug</a> to look at their html / css markup.</p> http://stackoverflow.com/questions/1190338/validate-a-gridview/1190347#1190347 5 Answer by Keltex for Validate a Gridview Keltex 2009-07-27T20:09:39Z 2009-07-27T20:14:43Z <p>You best bet is to convert the <code>BoundField</code> into a <code>TemplateField</code> and add the validation control to the <code>EditItemTemplate</code>. So your first column would become:</p> <pre><code>&lt;asp:TemplateField HeaderText="Application" SortExpression="APPName"&gt; &lt;EditItemTemplate&gt; &lt;asp:TextBox ID="txtApp" runat="server" Text='&lt;%# Bind("APPName") %&gt;'/&gt; &lt;asp:RequiredFieldValidator runat='server' ID='requiredApp' ErrorMessage='Application Name Cannot Be Empty' ControlToValidate='txtApp' /&gt; &lt;/EditItemTemplate&gt; &lt;ItemTemplate&gt; &lt;asp:Label ID="labelApp" runat="server" Text='&lt;%# Bind("APPName") %&gt;'/&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; </code></pre> http://stackoverflow.com/questions/1185560/httpmodule-httpapplication-testing-whether-url-is-a-request-for-a-file/1185738#1185738 0 Answer by Keltex for HttpModule/HttpApplication testing whether url is a request for a file Keltex 2009-07-26T22:29:40Z 2009-07-26T22:29:40Z <p>Try this:</p> <pre><code>// get the URI Uri MyUrl = Request.Url; // remove path because System.IO.Path doesn't like forward slashes string Filename = MyUrl.Segments[MyUrl.Segments.Length-1]; // Extract the extension string Extension = System.IO.Path.GetExtension(Filename); </code></pre> <p>Note that <code>Extension</code> will always have the leading '.'. e.g. '.css' or '.js'</p> http://stackoverflow.com/questions/1184720/can-i-programmatically-view-the-managed-heap-contents-from-a-net-app/1184817#1184817 0 Answer by Keltex for Can I programmatically view the managed heap contents from a .net app? Keltex 2009-07-26T15:17:40Z 2009-07-26T15:17:40Z <p>You can use the CLR Profiler to see this information:</p> <blockquote> <p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=86ce6052-d7f4-4aeb-9b7a-94635beebdda&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?familyid=86ce6052-d7f4-4aeb-9b7a-94635beebdda&amp;displaylang=en</a></p> </blockquote> http://stackoverflow.com/questions/1182614/drawing-family-trees-with-wpf/1182652#1182652 3 Answer by Keltex for Drawing family trees with WPF Keltex 2009-07-25T18:12:15Z 2009-07-25T18:12:15Z <p>Check out Family.Show:</p> <blockquote> <p><a href="http://www.vertigo.com/familyshow.aspx" rel="nofollow">http://www.vertigo.com/familyshow.aspx</a></p> </blockquote> http://stackoverflow.com/questions/1182333/css-how-to-view-computed-font-size/1182367#1182367 1 Answer by Keltex for CSS - How to view computed font size? Keltex 2009-07-25T15:58:19Z 2009-07-25T15:58:19Z <p>This conversion table between points, pixes, ems and percent isn't 100% accurate, but I've found it to be useful:</p> <p><a href="http://sureshjain.wordpress.com/2007/07/06/53/" rel="nofollow">http://sureshjain.wordpress.com/2007/07/06/53/</a></p> http://stackoverflow.com/questions/1182251/auto-converting-numbers-to-comma-fied-versions/1182277#1182277 4 Answer by Keltex for Auto-converting numbers to comma-fied versions Keltex 2009-07-25T15:08:42Z 2009-07-25T15:51:03Z <p>Why not (inside your delegate):</p> <pre><code>CultureInfo ci = new CultureInfo("en-US"); string output = int.Parse(match.Value).ToString("N0",ci); </code></pre> <p>Translation:</p> <ol> <li>Convert to int (or long if need be)</li> <li>Use .net Numeric Format to properly insert commas</li> </ol> http://stackoverflow.com/questions/1190809/how-do-i-run-my-sql-script-file-through-ado-net/1190832#1190832 Comment by Keltex on How do I run my .sql script file through ADO.NET? Keltex 2009-11-21T16:13:08Z 2009-11-21T16:13:08Z You should wrap the SqlConnection declaration in a in using() http://stackoverflow.com/questions/1394810/bind-sqldatareader-to-repeater-good-practice Comment by Keltex on Bind SqlDataReader to Repeater. Good practice? Keltex 2009-09-08T16:04:57Z 2009-09-08T16:04:57Z You don't need the catch and re-throw block. The finally will take care of it. Or the using by Andrew Hare http://stackoverflow.com/questions/1279416/why-my-httpwebrequest-post-to-myhandler-ashx-is-rejected-with-status-code-401/1279480#1279480 Comment by Keltex on Why my httpwebrequest post to myhandler.ashx is rejected with status code 401 Keltex 2009-08-14T18:47:19Z 2009-08-14T18:47:19Z What happens when you remove context.Response.Redirect(msgReturn.ToString());? http://stackoverflow.com/questions/1261436/stop-asp-net-from-recycling-app-pool-due-to-changes-to-the-bin Comment by Keltex on Stop ASP.Net from recycling app pool due to "changes to the bin" Keltex 2009-08-11T16:21:27Z 2009-08-11T16:21:27Z What makes you think this is the cause if nothing in /bin has changed? http://stackoverflow.com/questions/1218822/dropdownlist-crashes-in-thickbox Comment by Keltex on DropDownList crashes in Thickbox Keltex 2009-08-02T14:33:13Z 2009-08-02T14:33:13Z Some code would be helpful. http://stackoverflow.com/questions/901227/can-you-recommend-an-effective-and-cheap-cdn-for-video-streaming/943588#943588 Comment by Keltex on Can you recommend an effective and cheap CDN for video streaming? Keltex 2009-07-30T19:40:38Z 2009-07-30T19:40:38Z I just started playing with these guys. So far it's working quite nicely. http://stackoverflow.com/questions/1197444/how-to-get-a-google-map-to-use-100-of-its-parent-container/1197476#1197476 Comment by Keltex on How to get a google map to use 100% of its parent container? Keltex 2009-07-29T19:21:01Z 2009-07-29T19:21:01Z @Alex... you're right. Just put in there for clarity. http://stackoverflow.com/questions/1184735/how-to-used-control-key-in-c Comment by Keltex on How to used control Key in c# Keltex 2009-07-26T15:11:35Z 2009-07-26T15:11:35Z winforms? asp.net? http://stackoverflow.com/questions/1182362/formating-datetime-column-in-a-dataset Comment by Keltex on formating datetime column in a DataSet. Keltex 2009-07-25T15:59:59Z 2009-07-25T15:59:59Z Is the column a text column or a DateTime column? http://stackoverflow.com/questions/1182251/auto-converting-numbers-to-comma-fied-versions/1182277#1182277 Comment by Keltex on Auto-converting numbers to comma-fied versions Keltex 2009-07-25T15:52:13Z 2009-07-25T15:52:13Z @maciejkow I incorporated your suggestion. http://stackoverflow.com/questions/1174991/how-do-i-hide-the-username-password-prompt-that-appears-when-a-webmethod-gets-c/1175187#1175187 Comment by Keltex on How do I hide the username/password prompt that appears when a [WebMethod] gets called on an invalid session? Keltex 2009-07-24T15:24:55Z 2009-07-24T15:24:55Z @DDaviesBrackett I wonder if you want to dig into the asp.net source code. http://stackoverflow.com/questions/1168250/whats-the-fastest-way-to-load-a-text-or-ntext-sql-server-column Comment by Keltex on What's the fastest way to load a text or ntext SQL Server column? Keltex 2009-07-22T21:20:32Z 2009-07-22T21:20:32Z Yes. It's the primary key. http://stackoverflow.com/questions/1168250/whats-the-fastest-way-to-load-a-text-or-ntext-sql-server-column/1168266#1168266 Comment by Keltex on What's the fastest way to load a text or ntext SQL Server column? Keltex 2009-07-22T21:09:55Z 2009-07-22T21:09:55Z It's using the primary key, which is indexed. http://stackoverflow.com/questions/1131981/in-c-net-is-there-a-reason-for-no-copy-constructor-for-stringdictionary/1131999#1131999 Comment by Keltex on In C# .NET, is there a reason for no copy constructor for StringDictionary? Keltex 2009-07-15T15:09:42Z 2009-07-15T15:09:42Z I think he's saying that the generic type DOES have this sort of constructor, but the old specialized dictionary does not. http://stackoverflow.com/questions/1128746/how-do-i-find-the-client-id-of-control-within-an-asp-net-gridview/1128748#1128748 Comment by Keltex on How do I find the Client ID of control within an ASP.NET GridView? Keltex 2009-07-15T14:35:34Z 2009-07-15T14:35:34Z up voted because it works, but I prefer Chris's answer because it's not done in code-behind.