User Rex M - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T00:29:02Zhttp://stackoverflow.com/feeds/user/67http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1931810/how-do-i-write-a-generic-save-method-that-handles-single-objects-and-collection/1931822#19318221Answer by Rex M for How do I write a generic Save() method that handles single objects and collections?Rex M2009-12-19T03:14:49Z2009-12-19T03:14:49Z<p>You can't rely on type inference for this specific case. <code><T>(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#19310704Answer by Rex M for Why does code require "maintenance "?Rex M2009-12-18T22:31:18Z2009-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#19116643Answer by Rex M for Design pattern question for maintainabilityRex M2009-12-16T01:21:08Z2009-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#19098680Answer by Rex M for Invoke and BeginInvokeRex M2009-12-15T19:42:53Z2009-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#18828110Answer by Rex M for c# class instance communicationRex M2009-12-10T17:56:06Z2009-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#18749683Answer by Rex M for TFS 2010 and Sharepoint (Licensing)Rex M2009-12-09T16:13:31Z2009-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#18695383Answer by Rex M for ValidateRequest not workingRex M2009-12-08T20:13:18Z2009-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, "<sup>foo</sup>");
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("<sup>foo</sup>");
</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#18642652Answer by Rex M for How is empty string collection any different from other empty collections, which don’t cause an exceptionRex M2009-12-08T02:43:57Z2009-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><Columns>
<asp:TemplateField>
<ItemTemplate><%# Container.DataItem %></ItemTemplate>
</asp:TemplateField>
</Columns>
</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#185759113Answer by Rex M for How hard is it to tamper with a strong named assembly?Rex M2009-12-07T03:06:40Z2009-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#18546284Answer by Rex M for Why can't I use System.ValueType as a generics constraint?Rex M2009-12-06T07:19:42Z2009-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#18536081Answer by Rex M for Developing a website for 3 mln. users: SharePoint OR pure ASP.NET?Rex M2009-12-05T21:56:15Z2009-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#18534351Answer by Rex M for Cache user controlRex M2009-12-05T20:56:53Z2009-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#18504799Answer by Rex M for C# finding a certain condition of a object via a dictionaryRex M2009-12-05T00:09:27Z2009-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#183815510Answer by Rex M for [C#] cannot convert from 'out T' to 'out Component'Rex M2009-12-03T06:53:55Z2009-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#18371018Answer by Rex M for Proper way to accomplish this construction using constructor chaining? (C#)Rex M2009-12-03T01:30:30Z2009-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#18048771Answer by Rex M for c# - How to deserialize a generic list<T> when I don't know the type of (T)?Rex M2009-11-26T17:25:03Z2009-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<>).MakeGenericType(new Type[] { elementType });
</code></pre>
<p>Now you have <code>listType</code>, which is the exact <code>List<T></code> you used (say, <code>List<Foo></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#17947871Answer by Rex M for Capture screenshot of website on the client (Javascript or flash)Rex M2009-11-25T05:11:25Z2009-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#17813065Answer by Rex M for Render ASPX page at runtime from databaseRex M2009-11-23T05:47:20Z2009-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#17607436Answer by Rex M for Why are table based sites bad for screen reader users?Rex M2009-11-19T03:41:05Z2009-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#17598994Answer by Rex M for C# Url Builder ClassRex M2009-11-18T23:36:54Z2009-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#17432132Answer by Rex M for Best way to manage ListViewItems in a Detailed ListView?Rex M2009-11-16T16:18:25Z2009-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#17395862Answer by Rex M for Regex splitting with exceptionRex M2009-11-16T01:20:22Z2009-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 = @"(?<key>)[A-Z]+)\s(?<value>({.+?}|[^{},]+))";
List<string[]> results = new List<string[]>(); //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 = @"(?<key>)[A-Z]+)\s({(?<nested>.+?)}|(?<simple>[^{},]+))";
</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<string[]> values)
{
MatchCollection matches = Regex.Matches(input, pattern, RegexOptions.SingleLine | RegexOptions.IgnoreCase);
foreach(Match match in matches)
{
if(match.Success)
{
if(match.Groups["nested"].Success && !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#17394646Answer by Rex M for Can I interact with .NET libraries through Javascript?Rex M2009-11-16T00:29:12Z2009-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#173575410Answer by Rex M for C#: How to use generic method with "out" variableRex M2009-11-14T22:02:39Z2009-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#17394161Answer by Rex M for display image in gridview column based on value in other columnRex M2009-11-16T00:13:09Z2009-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#17393964Answer 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 M2009-11-16T00:08:03Z2009-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#17392534Answer by Rex M for Storing login/password in twitter clientRex M2009-11-15T23:21:01Z2009-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#17384692Answer by Rex M for How do CMS upload images?Rex M2009-11-15T19:05:13Z2009-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#17380253Answer by Rex M for bytearray to image asp.netRex M2009-11-15T16:34:39Z2009-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><img src="/imagehandler.ashx" />
</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><img src="/imagehandler.ashx?img=<%=id%>" />
<!-- will print ...ashx?img=42a96c06-c5dd-488c-906f-cf20663d0a43 -->
</code></pre>
http://stackoverflow.com/questions/1736552/how-to-findcontrols-in-repeater-control/1736582#17365822Answer by Rex M for How to FindControls in repeater control ?Rex M2009-11-15T04:42:30Z2009-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#1931820Comment by Rex M on How do I write a generic Save() method that handles single objects and collections?Rex M2009-12-19T03:17:03Z2009-12-19T03:17:03ZThis 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#1931070Comment by Rex M on Why does code require "maintenance "?Rex M2009-12-18T22:59:24Z2009-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#1931057Comment by Rex M on Why does code require "maintenance "?Rex M2009-12-18T22:33:13Z2009-12-18T22:33:13ZNew features and requirements changes usually aren't considered "maintenance".http://stackoverflow.com/questions/1925856/compare-2-listdictionarystring-objectComment by Rex M on Compare 2 List<Dictionary<string, object>>Rex M2009-12-18T02:19:24Z2009-12-18T02:19:24ZNo problem, SLaks was just making sure all bases were covered.http://stackoverflow.com/questions/1919448/working-with-datatables/1919455#1919455Comment by Rex M on Working with DataTablesRex M2009-12-17T04:29:12Z2009-12-17T04:29:12ZIt 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#1911602Comment by Rex M on Adding null to a List<bool?> cast as an IList throwing an exception.Rex M2009-12-16T01:09:16Z2009-12-16T01:09:16ZIt has nothing to do with IList being a different interface than IList<T> - they are just interfaces, and in this case List<T> provides the implementation. The problem is that List<T>'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#1911594Comment by Rex M on Adding null to a List<bool?> cast as an IList throwing an exception.Rex M2009-12-16T01:01:37Z2009-12-16T01:01:37ZVery unhelpful, Pierreten. We're all here to learn, not to be talked down to!http://stackoverflow.com/questions/1911118/what-movies-should-programmers-watchComment by Rex M on What movies should programmers watch?Rex M2009-12-15T23:32:26Z2009-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-watchComment by Rex M on What movies should programmers watch?Rex M2009-12-15T23:18:31Z2009-12-15T23:18:31Z@Bojan well, it doesn't.http://stackoverflow.com/questions/1909839/invoke-and-begininvoke/1909868#1909868Comment by Rex M on Invoke and BeginInvokeRex M2009-12-15T20:16:50Z2009-12-15T20:16:50Z@Niao see the second sentence of my answerhttp://stackoverflow.com/questions/1888715/net-return-a-listcustomserializableobject-from-a-webservice/1888771#1888771Comment by Rex M on .NET - Return a List<CustomSerializableObject> from a webserviceRex M2009-12-11T17:23:52Z2009-12-11T17:23:52ZThe XML serialized representation of <code>List<T></code> is interchangeable with <code>T[]</code>http://stackoverflow.com/questions/1882763/c-class-instance-communication/1882811#1882811Comment by Rex M on c# class instance communicationRex M2009-12-10T19:23:30Z2009-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#1882811Comment by Rex M on c# class instance communicationRex M2009-12-10T18:07:36Z2009-12-10T18:07:36ZNo - 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#1870385Comment by Rex M on Performance and foreach loop in .NETRex M2009-12-09T01:00:12Z2009-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#1869538Comment by Rex M on ValidateRequest not workingRex M2009-12-08T20:21:21Z2009-12-08T20:21:21Z@coffeeaddict are you sure? I'm definitely not seeing that. Just set up a test to verify.