User Rex M - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T00:29:02Z http://stackoverflow.com/feeds/user/67 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1931810/how-do-i-write-a-generic-save-method-that-handles-single-objects-and-collection/1931822#1931822 1 Answer by Rex M for How do I write a generic Save() method that handles single objects and collections? Rex M 2009-12-19T03:14:49Z 2009-12-19T03:14:49Z <p>You can't rely on type inference for this specific case. <code>&lt;T&gt;(T)</code> will satisfy any type, so the inference won't continue searching to find more specific constraints which still meet the signature.</p> http://stackoverflow.com/questions/1931045/why-does-code-require-maintenance/1931070#1931070 4 Answer by Rex M for Why does code require "maintenance "? Rex M 2009-12-18T22:31:18Z 2009-12-18T22:31:18Z <p>Maintenance development <em>is</em> bug fixes and gradual enhancements to eliminate instabilities without introducing new features. Software of any significant size ships with <strong>a lot</strong> of bugs in it - most of them just aren't showstoppers, so they get handed to maintenance for eventual cleanup.</p> <p>This is of course, as you pointed out, contrasted from new feature development.</p> http://stackoverflow.com/questions/1911640/design-pattern-question-for-maintainability/1911664#1911664 3 Answer by Rex M for Design pattern question for maintainability Rex M 2009-12-16T01:21:08Z 2009-12-16T01:21:08Z <p>Let's take a step back - why are you using interfaces in the first place? Can a single implementation of <code>IShouldPerformActionCheck</code> be shared between multiple implementations of <code>IPerformAction</code>? It seems the answer is no, since ICheck must be aware of implementation-specific properties (Property1, Property2, Property3) on the Action in order to perform the check. Therefore the relationship between IAction and ICheck requires more information than the IAction contract can provide to ICheck. It seems your Check classes should be based on concrete implementations that are coupled to the specific type of action they check, like:</p> <pre><code>abstract class CheckConcreteClass { abstract void Check(ConcreteClass concreteInstance); } </code></pre> http://stackoverflow.com/questions/1909839/invoke-and-begininvoke/1909868#1909868 0 Answer by Rex M for Invoke and BeginInvoke Rex M 2009-12-15T19:42:53Z 2009-12-15T19:42:53Z <p>BeginInvoke executes the method body on another thread and allows the current thread to continue. If you are trying to directly update a control property from another thread, it will throw an exception.</p> http://stackoverflow.com/questions/1882763/c-class-instance-communication/1882811#1882811 0 Answer by Rex M for c# class instance communication Rex M 2009-12-10T17:56:06Z 2009-12-10T17:56:06Z <p>There are a few different ways. The fact that you need to do this is sometimes indicative of a design problem, though of course pragmatism must come into play.</p> <p>One simple way is to have a private static event in the FootballTeam class which itself subscribes to in the ctor:</p> <pre><code>public class FootballTeam { private static event EventHandler SomethingHappened; public FootballTeam() { SomethingHappened += this.HandleSomethingHappened; } public void DoSomething() { SomethingHappened(); //notifies all instances - including this one! } } </code></pre> <p>To avoid a memory leak, make sure to clean up the event handlers by implementing IDisposable:</p> <pre><code>public class FootballTeam : IDisposable { //... public void Dispose() { SomethingHappened -= this.HandleSomethingHappened; //release the reference to this instance so it can be GC'd } } </code></pre> http://stackoverflow.com/questions/1874927/tfs-2010-and-sharepoint-licensing/1874968#1874968 3 Answer by Rex M for TFS 2010 and Sharepoint (Licensing) Rex M 2009-12-09T16:13:31Z 2009-12-09T16:13:31Z <p>You need a license for MOSS, but Sharepoint Services 3.0 are part of Windows and don't require a separate license to use. TFS only requires WSS to run. The stack looks like this:</p> <pre><code> WSS / \ MOSS TFS </code></pre> http://stackoverflow.com/questions/1869515/validaterequest-not-working/1869538#1869538 3 Answer by Rex M for ValidateRequest not working Rex M 2009-12-08T20:13:18Z 2009-12-08T20:58:00Z <p>I'll start by saying this is generally a bad idea. You don't want to give direct control of what is rendered in the page over to the user. They could put anything in the querystring. You're better off caching the message like so:</p> <pre><code>Guid id = Guid.NewGuid(); HttpRuntime.Cache.Add(id, "&lt;sup&gt;foo&lt;/sup&gt;"); Response.Redirect("page.aspx?message=" + id.ToString()); </code></pre> <p>And then retrieving the message (and if you want, removing it):</p> <pre><code>string message = HttpRuntime.Cache[new Guid(Request.QueryString["message"])]; HttpRuntime.Cache.Remove(id); </code></pre> <p>But if you must need to know how to put HTML in the querystring:</p> <p>Encode it:</p> <pre><code>string value = HttpUtility.UrlEncode("&lt;sup&gt;foo&lt;/sup&gt;"); </code></pre> <p>Yields:</p> <pre><code>%3Csup%3Efoo%3C%2Fsup%3E </code></pre> <p>And decode to get the reverse:</p> <pre><code>string value = HttpUtility.UrlDecode("%3Csup%3Efoo%3C%2Fsup%3E"); </code></pre> http://stackoverflow.com/questions/1862953/how-is-empty-string-collection-any-different-from-other-empty-collections-which/1864265#1864265 2 Answer by Rex M for How is empty string collection any different from other empty collections, which don’t cause an exception Rex M 2009-12-08T02:43:57Z 2009-12-08T02:43:57Z <p>If your GridView has <code>AutoGenerateColumns</code> set to <code>true</code>, it requires a sequence of objects which have bindable members, like a <code>DataRow</code>. The column autogenerator inspects the signature of the sequence passed in and knows how to handle a few various cases, such as a DataRow which has a collection of columns which can be inferred into a list of columns on the GridView control. A string has no such properties. Set <code>AutoGenerateColumns</code> to <code>false</code>, and define your own column, like so:</p> <pre><code>&lt;Columns&gt; &lt;asp:TemplateField&gt; &lt;ItemTemplate&gt;&lt;%# Container.DataItem %&gt;&lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;/Columns&gt; </code></pre> <p>A string is pretty limited as a datasource for a GridView - unless you plan to eval properties about the string like it's Length, you can really just print the string itself (<code>DataItem</code>).</p> http://stackoverflow.com/questions/1857579/how-hard-is-it-to-tamper-with-a-strong-named-assembly/1857591#1857591 13 Answer by Rex M for How hard is it to tamper with a strong named assembly? Rex M 2009-12-07T03:06:40Z 2009-12-07T03:06:40Z <p>Strong-naming does not prevent modifying the assembly, but it does prevent other applications which reference a strong-named assembly from inadvertently using a modified version.</p> http://stackoverflow.com/questions/1854625/why-cant-i-use-system-valuetype-as-a-generics-constraint/1854628#1854628 4 Answer by Rex M for Why can't I use System.ValueType as a generics constraint? Rex M 2009-12-06T07:19:42Z 2009-12-06T07:19:42Z <p>ValueType is not the base class of value types, it is simply a container for the value when it is boxed. Since it is a container class and not in any sort of hierarchy for the actual types you're wanting to use, it is not useful as a generic constraint.</p> http://stackoverflow.com/questions/1848462/developing-a-website-for-3-mln-users-sharepoint-or-pure-asp-net/1853608#1853608 1 Answer by Rex M for Developing a website for 3 mln. users: SharePoint OR pure ASP.NET? Rex M 2009-12-05T21:56:15Z 2009-12-05T21:56:15Z <p>The problem with asking whether Sharepoint is easy to customize is that there's a wide range of levels of customization people are experienced with. And for some reason, most people also seem to think that whatever level they customized Sharepoint to is the extent to which anyone else would also try to customize Sharepoint.</p> <p>It's hard to talk about degrees of customization in concrete terms. What is "customization" to me is wrangling with the core DAL, fighting with bugs in the CAML to SQL query optimizers, overriding the SPListItem hydration pipeline, etc. To others, "customization" might mean building some web part widgets and deploying them in a WSP. If you find that there is some impedance mismatch between your logical model and Sharepoint's working model, you will have a really hard time reconciling the two.</p> http://stackoverflow.com/questions/1853416/cache-user-control/1853435#1853435 1 Answer by Rex M for Cache user control Rex M 2009-12-05T20:56:53Z 2009-12-05T20:56:53Z <p>It's quite possible - just use the <a href="http://msdn.microsoft.com/en-us/library/system.web.caching.cache.aspx" rel="nofollow"><strong>HttpRuntime cache</strong></a>:</p> <pre><code>HttpRuntime.Cache.Add("myKey", myCountryList); </code></pre> <p>And then fetch the object back out:</p> <pre><code>CountryList myCountryList = HttpRuntime.Cache["myKey"] as CountryList; if(myCountryList == null) { //the object isn't in cache } </code></pre> <p>This is the most simple usage - the cache is fairly robust and supports some more complex behaviors like invalidation, callbacks, etc. which is all covered in the link above.</p> http://stackoverflow.com/questions/1850475/c-finding-a-certain-condition-of-a-object-via-a-dictionary/1850479#1850479 9 Answer by Rex M for C# finding a certain condition of a object via a dictionary Rex M 2009-12-05T00:09:27Z 2009-12-05T00:09:27Z <p>The fastest way would be to make the username the key of the dictionary.</p> http://stackoverflow.com/questions/1838072/c-cannot-convert-from-out-t-to-out-component/1838155#1838155 10 Answer by Rex M for [C#] cannot convert from 'out T' to 'out Component' Rex M 2009-12-03T06:53:55Z 2009-12-03T06:53:55Z <p>It's because <code>out</code> parameter types cannot be <a href="http://en.wikipedia.org/wiki/Covariance%5Fand%5Fcontravariance%5F%28computer%5Fscience%29" rel="nofollow">covariant/contravariant</a>. <strong>The type of the variable must exactly match the parameter type.</strong></p> <p>See:</p> <pre><code>class Super { } class Sub : Super { } void Test(out Super s) { s = new Super(); } void Main() { Sub mySub = new Sub(); Test(out mySub); //doesn't work } </code></pre> http://stackoverflow.com/questions/1837087/proper-way-to-accomplish-this-construction-using-constructor-chaining-c/1837101#1837101 8 Answer by Rex M for Proper way to accomplish this construction using constructor chaining? (C#) Rex M 2009-12-03T01:30:30Z 2009-12-03T01:30:30Z <p>Is this what you're looking for?</p> <pre><code>public ComplexNumber() : this(0.0, 0.0) { } public ComplexNumber(double r, double c) { realPart = r; complexPart = c; } </code></pre> http://stackoverflow.com/questions/1804859/c-how-to-deserialize-a-generic-listt-when-i-dont-know-the-type-of-t/1804877#1804877 1 Answer by Rex M for c# - How to deserialize a generic list<T> when I don't know the type of (T)? Rex M 2009-11-26T17:25:03Z 2009-11-26T17:34:26Z <p>If the serializer you are using does not retain the type - at the least, you must store the type of <code>T</code> along with the data, and use that to create the generic list reflectively:</p> <pre><code>//during storage: Type elementType = myList.GetType().GetGenericTypeDefinition().GetGenericArguments[0]; string typeNameToSave = elementType.FullName; //during retrieval string typeNameFromDatabase = GetTypeNameFromDB(); Type elementType = Type.GetType(typeNameFromDatabase); Type listType = typeof(List&lt;&gt;).MakeGenericType(new Type[] { elementType }); </code></pre> <p>Now you have <code>listType</code>, which is the exact <code>List&lt;T&gt;</code> you used (say, <code>List&lt;Foo&gt;</code>). You can pass that type into your deserialization routine.</p> http://stackoverflow.com/questions/1794719/capture-screenshot-of-website-on-the-client-javascript-or-flash/1794787#1794787 1 Answer by Rex M for Capture screenshot of website on the client (Javascript or flash) Rex M 2009-11-25T05:11:25Z 2009-11-25T05:11:25Z <p>The only way to reliably provide a high-quality print version of whats on-screen in a rich web application is to use the client-side, say JavaScript, to send the server precise information about the current state (where bubbles are, etc.) and use that to generate an image that mimics the positioning. Convert that image to a PDF or what-have-you, then send to the client for download.</p> http://stackoverflow.com/questions/1781275/render-aspx-page-at-runtime-from-database/1781306#1781306 5 Answer by Rex M for Render ASPX page at runtime from database Rex M 2009-11-23T05:47:20Z 2009-11-23T05:53:46Z <p>The path you're trying to go down is essentially <em>loading ASPX files from some other storage mechanism than the web server file system</em>. You've started to implement part of that, but you actually don't even need a custom HttpHandler to do this - ASP.NET has an existing mechanism for specifying other sources of the actual ASPX markup.</p> <p>It's called a <a href="http://msdn.microsoft.com/en-us/library/system.web.hosting.virtualpathprovider.aspx" rel="nofollow"><strong>VirtualPathProvider</strong></a>, and it lets you swap out the default functionality for loading the files from disk with, say, loading them from SQL Server or wherever else makes sense. Then you can take advantage of all the built-in compiling and caching that ASP.NET uses on its own.</p> <p>The core of the functionality comes in the <a href="http://msdn.microsoft.com/en-us/library/system.web.hosting.virtualpathprovider.getfile.aspx" rel="nofollow">GetFile method</a> and the <a href="http://msdn.microsoft.com/en-us/library/system.web.hosting.virtualfile.open.aspx" rel="nofollow">VirtualFile's Open()</a>:</p> <pre><code>public override VirtualFile GetFile(string virtualPath) { //lookup ASPX markup return new MyVirtualFile(aspxMarkup); } //... public class MyVirtualFile : VirtualFile { private string markup; public MyVirtualFile(string markup) { this.markup = markup; } public override Stream Open() { return new StringReader(this.markup); } } </code></pre> <p>Note that today, using a custom VirtualPathProvider does require full trust. However, soon ASP.NET 4.0 will be available and it supports VPPs under medium trust.</p> http://stackoverflow.com/questions/1760732/why-are-table-based-sites-bad-for-screen-reader-users/1760743#1760743 6 Answer by Rex M for Why are table based sites bad for screen reader users? Rex M 2009-11-19T03:41:05Z 2009-11-19T03:41:05Z <p>Screen readers assume the content inside a <code>table</code> is tabular, and reads it as such. E.g. "row 1, column 1: (contents)". If you use tables to lay out your site, this won't necessarily make any sense. You are telling the end-client you have data with tabular significance, when you actually don't.</p> <p>By contrast, <code>div</code> have no meaning other than "section", so screen readers make no attempt to signify them. You can use divs to make arbitrary visual breaks in your layout without impacting the <em>meaning</em> of the markup.</p> <p>This is what we mean when we say "semantic" markup. Semantic means the markup accurately describes the <em>meaning</em> of the content inside of it - tables wrap tabular data, <code>UL</code>s wrap unordered lists, etc.</p> http://stackoverflow.com/questions/1759881/c-url-builder-class/1759899#1759899 4 Answer by Rex M for C# Url Builder Class Rex M 2009-11-18T23:36:54Z 2009-11-18T23:36:54Z <p>We do use our own alternative Uri class that is partially based on Uri, as you say. However, I think there's an important distinction to be made - <strong>System.Uri is generally intended to be immutable - or, more precisely, behave immutably.</strong> Once one comes into existence, it represents a precise universal location/resource endpoint. If you need to describe a different location, you should create a new Uri, not change the existing one.</p> <p>There's a separate class that specializes in producing Uri's: <a href="http://msdn.microsoft.com/en-us/library/system.uribuilder%5Fmembers.aspx" rel="nofollow">UriBuilder</a>.</p> http://stackoverflow.com/questions/1743146/best-way-to-manage-listviewitems-in-a-detailed-listview/1743213#1743213 2 Answer by Rex M for Best way to manage ListViewItems in a Detailed ListView? Rex M 2009-11-16T16:18:25Z 2009-11-16T16:18:25Z <p>Have you considered using a <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.bindingsource.aspx" rel="nofollow">BindingSource</a>, or creating your own which implements IBindingListView? This keeps concerns about the data and its state scoped to the data itself and not on any controls which consume it. Since .NET controls are already built to work with BindingSources, you can take advantage of some more robust functionality. Instead of explicitly invoking a screen refresh, the control is simply responsible for responding to events raised by the binding source, and a controller that notifies whether the control is ready to be refreshed without forcing it.</p> http://stackoverflow.com/questions/1739556/regex-splitting-with-exception/1739586#1739586 2 Answer by Rex M for Regex splitting with exception Rex M 2009-11-16T01:20:22Z 2009-11-16T01:28:21Z <p>It's not clear to me if this example represents a potential infinite nesting of these JSON-esque groups, or just one level of nesting.</p> <p>If only one level of nesting is possible, a straightforward Regex will do:</p> <p>(Please note I did not write this with an IDE; the concept should be correct but syntax errors can't be guaranteed at the moment. Apologies)</p> <pre><code>string pattern = @"(?&lt;key&gt;)[A-Z]+)\s(?&lt;value&gt;({.+?}|[^{},]+))"; List&lt;string[]&gt; results = new List&lt;string[]&gt;(); //probably not best data structure MatchCollection matches = Regex.Matches(input, pattern, RegexOptions.SingleLine | RegexOptions.IgnoreCase); foreach(Match match in matches) { if(match.Success) { results.Add(new string[] { match.Groups["key"].Value, match.Groups["value"].Value }); } } </code></pre> <p>If they can be nested many levels, you probably want to approach this recursively. That would necessitate splitting the value match into nested value and simple value:</p> <pre><code>string pattern = @"(?&lt;key&gt;)[A-Z]+)\s({(?&lt;nested&gt;.+?)}|(?&lt;simple&gt;[^{},]+))"; </code></pre> <p>And for each match where nested has a value, execute the same routine against that value:</p> <pre><code>void Deserialize(string input, List&lt;string[]&gt; values) { MatchCollection matches = Regex.Matches(input, pattern, RegexOptions.SingleLine | RegexOptions.IgnoreCase); foreach(Match match in matches) { if(match.Success) { if(match.Groups["nested"].Success &amp;&amp; !string.IsNullOrEmpty(match.Groups["nested"].Value)) { Deserialize(match.Groups["nested"].Value, values); } else { values.Add(new string[] { match.Groups["key"].Value, match.Groups["simple"].Value }); } } } } </code></pre> http://stackoverflow.com/questions/1739459/can-i-interact-with-net-libraries-through-javascript/1739464#1739464 6 Answer by Rex M for Can I interact with .NET libraries through Javascript? Rex M 2009-11-16T00:29:12Z 2009-11-16T00:29:12Z <p>The most obvious approach is exposing your .NET libraries <a href="http://www.15seconds.com/Issue/010430.htm" rel="nofollow">as web services</a> on a web server (either IIS or Apache/Mono). This allows both JS and PHP to consume the same service endpoints (JS via AJAX, PHP vs web service calls).</p> <p>If extreme performance is a concern - for example, your PHP apps need to make heavy calls into the .NET libraries as if they are native, then web services are probably not the best approach. For that, you might want to look into making <a href="http://msdn.microsoft.com/en-us/library/f07c8z1c.aspx" rel="nofollow">COM Callable Wrappers</a> for your .NET libraries and <a href="http://dev.juokaz.com/winphp-2009/using-php-with-c-written-libraries" rel="nofollow">consuming them from PHP</a>.</p> http://stackoverflow.com/questions/1735735/c-how-to-use-generic-method-with-out-variable/1735754#1735754 10 Answer by Rex M for C#: How to use generic method with "out" variable Rex M 2009-11-14T22:02:39Z 2009-11-16T00:15:49Z <p>It looks like in this case maybe you're doing it to try to avoid boxing? Difficult to say without more information, but for this specific example, it'd be much easier and probably less bug-prone to just use method overloading:</p> <pre><code>void Assign(out string value) { //... } void Assign(out int value) { //... } </code></pre> <p>For the purposes of learning specifically what <em>is</em> wrong here, you do need to cast a value to an object before casting it to the generic type:</p> <pre><code>(T)(object)"hello world!"; </code></pre> <p>Which IMO is pretty nasty and should be a last resort - certainly doesn't make your code any cleaner.</p> <p><strong>Any time you do type-checking of generic parameters, it's a good indication generics are not the right solution to your problem.</strong> Doing generic parameter type checks makes your code more complex, not simpler. It makes one method responsible for different behaviors based on type, instead of a series of single methods that are easy to change without accidentally affecting the others. See <a href="http://codebetter.com/blogs/karlseguin/archive/2008/12/05/get-solid-single-responsibility-principle.aspx" rel="nofollow">Single Responsibility Principle</a>.</p> http://stackoverflow.com/questions/1739292/display-image-in-gridview-column-based-on-value-in-other-column/1739416#1739416 1 Answer by Rex M for display image in gridview column based on value in other column Rex M 2009-11-16T00:13:09Z 2009-11-16T00:13:09Z <p>Have you stepped through the code in debug and ensured your <code>foreach</code> routine is running as you expect it to? Always check the obvious first... are your image paths correct? no "/" will mean it is looking for the image relative to the folder the page is loaded in.</p> http://stackoverflow.com/questions/1739393/is-it-possible-to-run-an-asp-net-3-5-mvc-1-0-app-on-a-server-that-supports-asp-ne/1739396#1739396 4 Answer by Rex M for Is it possible to run an ASP.NET 3.5 MVC 1.0 app on a server that supports ASP.NET 2.0 only? Rex M 2009-11-16T00:08:03Z 2009-11-16T00:08:03Z <p><strong>Mostly.</strong> Scott Hanselman has an article describing <a href="http://www.hanselman.com/blog/DeployingASPNETMVCOnASPNET20.aspx" rel="nofollow">exactly how to do this</a>. He notes:</p> <blockquote> <ul> <li>This workaround is offered with exactly zero warranty or support. It's as-is, just an FYI on the blog. If this hack deletes files or kills your cat, you have been warned. No whining.</li> <li>In practice, no one really knows what might break. Microsoft didn't test this. </li> <li>This just flat might not work for you. Sorry.</li> </ul> </blockquote> <p>The trick:</p> <blockquote> <p>You can copy System.Core from your .NET 3.5 development machine (this is the machine running VS2008 that you're developing on) to the /bin folder on your .NET 2.0 SP1 machine. It's gotta be running .NET Framework 2.0 SP1 or this won't work. System.Core is probably somewhere around "C:\windows\assembly\GAC_MSIL\System.Core\3.5.0.0__b77a5c561934e089" on your machine, but you're a bad person for even asking.</p> </blockquote> http://stackoverflow.com/questions/1739220/storing-login-password-in-twitter-client/1739253#1739253 4 Answer by Rex M for Storing login/password in twitter client Rex M 2009-11-15T23:21:01Z 2009-11-15T23:21:01Z <p>If this intended to be a Windows-only .NET application, you should look into the <strong><a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.protecteddata.aspx" rel="nofollow">Data Protection API</a> (DPAPI)</strong>. It delegates the specific security implementation to Windows, which in turn secures the data to disk using the user's Windows profile/credentials. Since that's tried and true, thoroughly vetted and constantly held up to attack, you can store info worry-free and focus on the parts of your application that matter to you.</p> <p>It's very easy to use DPAPI in .NET through the ProtectedData class:</p> <pre><code>ProtectedData.Protect(data, entropy, DataProtectionScope.CurrentUser); </code></pre> <p>If you are curious about the precise implementation of the underlying security, it's <a href="http://msdn.microsoft.com/en-us/library/ms995355.aspx" rel="nofollow">discussed at length here</a>.</p> http://stackoverflow.com/questions/1738435/how-do-cms-upload-images/1738469#1738469 2 Answer by Rex M for How do CMS upload images? Rex M 2009-11-15T19:05:13Z 2009-11-15T19:05:13Z <p>A common approach for CMS systems that need to work in low-trust environments (like shared hosting) is to use the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.fileupload.aspx" rel="nofollow">FileUpload control</a>, and save the uploaded file as a binary (BLOB) in a database. This avoids dealing with the headache of disk access rights on the web server.</p> <p>If you're using SQL Server, <a href="http://www.databasejournal.com/features/mssql/article.php/3719221/Storing-Images-and-BLOB-files-in-SQL-Server.htm" rel="nofollow">here's a great article</a> on the database side of things (storing images as BLOBs).</p> <p>The .NET side of things is pretty straightforward. The <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.fileupload.postedfile.aspx" rel="nofollow">FileUpload.PostedFile</a> property has all the information about the uploaded file, including a byte stream of its data.</p> http://stackoverflow.com/questions/1738020/bytearray-to-image-asp-net/1738025#1738025 3 Answer by Rex M for bytearray to image asp.net Rex M 2009-11-15T16:34:39Z 2009-11-15T16:39:52Z <p>Think about how normal images are served in a web page - the filename is referenced in markup, and the browser sends a separate request to the server for that file.</p> <p>The same principle applies here, except instead of referencing a static image file, you would want to reference an ASP.NET handler that serves the bytes of the image:</p> <pre><code>&lt;img src="/imagehandler.ashx" /&gt; </code></pre> <p>The short of the handler would look something like this:</p> <pre><code>public class ImageHandler : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.OutputStream.Write(imageData, 0, imageData.Length); context.Response.ContentType = "image/JPEG"; } } </code></pre> <p>Here's a (long) <a href="http://msdn.microsoft.com/en-us/library/ms972953.aspx" rel="nofollow">resource that covers the concepts</a> of creating an HttpHander in ASP.NET.</p> <p>Also, as Joel points out, think about where the byte array is coming from, since the HttpHandler is served in a totally different request than the page. At the most basic level, the two requests are not aware of each other or share any data.</p> <p>A common solution to this problem is to put the image data in cache:</p> <pre><code>Guid id = Guid.NewGuid(); HttpRuntime.Cache.Add(id.ToString(), imageData); </code></pre> <p>And pass the key to the HttpHandler in the querystring, so it can fetch it from cache:</p> <pre><code>&lt;img src="/imagehandler.ashx?img=&lt;%=id%&gt;" /&gt; &lt;!-- will print ...ashx?img=42a96c06-c5dd-488c-906f-cf20663d0a43 --&gt; </code></pre> http://stackoverflow.com/questions/1736552/how-to-findcontrols-in-repeater-control/1736582#1736582 2 Answer by Rex M for How to FindControls in repeater control ? Rex M 2009-11-15T04:42:30Z 2009-11-15T04:42:30Z <p>Controls don't exist in the repeater until it has been databound, and then each control in the ItemTemplate exists once per item - so if you bind to a source with 3 items, there will be 3 ParticipateBtns. You need to know which one you want before you can find it. Once you do, you can get it like so:</p> <pre><code>myRepeater.Items[1].FindControl("ParticipateBtn"); </code></pre> http://stackoverflow.com/questions/1931810/how-do-i-write-a-generic-save-method-that-handles-single-objects-and-collection/1931820#1931820 Comment by Rex M on How do I write a generic Save() method that handles single objects and collections? Rex M 2009-12-19T03:17:03Z 2009-12-19T03:17:03Z This doesn't follow SRP. The fact that the name of the parameter doesn't accurately describe the value it could contain is a big code smell warning. http://stackoverflow.com/questions/1931045/why-does-code-require-maintenance/1931070#1931070 Comment by Rex M on Why does code require "maintenance "? Rex M 2009-12-18T22:59:24Z 2009-12-18T22:59:24Z @Nathan IMO its a dysfunctional org that allows that to happen. The dev org should turn back around and demand it be treated as a new feature request. For internal apps, its demanding the customer pay for them. For external apps, the end-user can think its a bug that gets fixed, but internally metrics are skewed and expectations distorted when changes are allowed to slip in under the bug label. http://stackoverflow.com/questions/1931045/why-does-code-require-maintenance/1931057#1931057 Comment by Rex M on Why does code require "maintenance "? Rex M 2009-12-18T22:33:13Z 2009-12-18T22:33:13Z New features and requirements changes usually aren't considered &quot;maintenance&quot;. http://stackoverflow.com/questions/1925856/compare-2-listdictionarystring-object Comment by Rex M on Compare 2 List<Dictionary<string, object>> Rex M 2009-12-18T02:19:24Z 2009-12-18T02:19:24Z No problem, SLaks was just making sure all bases were covered. http://stackoverflow.com/questions/1919448/working-with-datatables/1919455#1919455 Comment by Rex M on Working with DataTables Rex M 2009-12-17T04:29:12Z 2009-12-17T04:29:12Z It wasn't helpful before the question was edited, either. http://stackoverflow.com/questions/1911577/adding-null-to-a-listbool-cast-as-an-ilist-throwing-an-exception/1911602#1911602 Comment by Rex M on Adding null to a List<bool?> cast as an IList throwing an exception. Rex M 2009-12-16T01:09:16Z 2009-12-16T01:09:16Z It has nothing to do with IList being a different interface than IList&lt;T&gt; - they are just interfaces, and in this case List&lt;T&gt; provides the implementation. The problem is that List&lt;T&gt;'s IList.Add implementation specifically works this way. http://stackoverflow.com/questions/1911577/adding-null-to-a-listbool-cast-as-an-ilist-throwing-an-exception/1911594#1911594 Comment by Rex M on Adding null to a List<bool?> cast as an IList throwing an exception. Rex M 2009-12-16T01:01:37Z 2009-12-16T01:01:37Z Very unhelpful, Pierreten. We're all here to learn, not to be talked down to! http://stackoverflow.com/questions/1911118/what-movies-should-programmers-watch Comment by Rex M on What movies should programmers watch? Rex M 2009-12-15T23:32:26Z 2009-12-15T23:32:26Z @Bojan There is nothing to discuss - this has already been talked about and settled long before you came along, and it is not going to change now. http://stackoverflow.com/questions/1911118/what-movies-should-programmers-watch Comment by Rex M on What movies should programmers watch? Rex M 2009-12-15T23:18:31Z 2009-12-15T23:18:31Z @Bojan well, it doesn't. http://stackoverflow.com/questions/1909839/invoke-and-begininvoke/1909868#1909868 Comment by Rex M on Invoke and BeginInvoke Rex M 2009-12-15T20:16:50Z 2009-12-15T20:16:50Z @Niao see the second sentence of my answer http://stackoverflow.com/questions/1888715/net-return-a-listcustomserializableobject-from-a-webservice/1888771#1888771 Comment by Rex M on .NET - Return a List<CustomSerializableObject> from a webservice Rex M 2009-12-11T17:23:52Z 2009-12-11T17:23:52Z The XML serialized representation of <code>List&lt;T&gt;</code> is interchangeable with <code>T[]</code> http://stackoverflow.com/questions/1882763/c-class-instance-communication/1882811#1882811 Comment by Rex M on c# class instance communication Rex M 2009-12-10T19:23:30Z 2009-12-10T19:23:30Z @Tony the key is to keep in mind that when you attach a handler to an event, the <i>event</i> now holds a reference to the <i>handler</i>, not vice-versa. If both have a short lifespan, it doesn't matter. If the event will live much longer than the handler, you need to use <code>-=</code> to release the handler from the event when you're finished. http://stackoverflow.com/questions/1882763/c-class-instance-communication/1882811#1882811 Comment by Rex M on c# class instance communication Rex M 2009-12-10T18:07:36Z 2009-12-10T18:07:36Z No - it's only important in this case because the event is static, so the event lives forever and will hold a reference to the instance which had a handler attached to it. So the instance will never get GC'd, because the GC sees there is still an active reference to it. We remove the reference when we are done to avoid that problem. http://stackoverflow.com/questions/1870343/performance-and-foreach-loop-in-net/1870385#1870385 Comment by Rex M on Performance and foreach loop in .NET Rex M 2009-12-09T01:00:12Z 2009-12-09T01:00:12Z @Jason the OP did say <code>declaring an instance of the RadEditor and DropDownList with every iteration</code> which is not what's happening. An instance is not being declared, a reference to it is being acquired. http://stackoverflow.com/questions/1869515/validaterequest-not-working/1869538#1869538 Comment by Rex M on ValidateRequest not working Rex M 2009-12-08T20:21:21Z 2009-12-08T20:21:21Z @coffeeaddict are you sure? I'm definitely not seeing that. Just set up a test to verify.