User Mark Brackett - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T10:16:30Zhttp://stackoverflow.com/feeds/user/2199http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1840187/database-on-file-server-windows/1840312#18403120Answer by Mark Brackett for Database on file server (Windows)Mark Brackett2009-12-03T14:44:34Z2009-12-03T14:44:34Z<blockquote>
<p>I believe this could be solved using Microsoft Access, which is an alright solution, though I believe I will run into locking problems.</p>
</blockquote>
<p>I'd say locking and queuing would be the least of your worries. With 100 concurrent users, Access will probably corrupt itself in minutes. With 10k+ records/day, it will likely bog down your entire network in a month or so.</p>
<blockquote>
<p>As I am under time pressure, and various other constraints it is not possible to set up a proper database running on a server.</p>
</blockquote>
<p>You can bring a database server up in an hour. Much less time than you'll spend hacking away at Access. There's open-source virtual machine images, MSSQL Express, hosted solutions, etc. Time and cost should be non-issues.</p>
<p>About the only thing I can think of that would have you using Access is the Forms support (which can be hooked to MSSQL Server) or DBA maintenance. Frankly, though, at 100 users Access will take so much babysitting that you can afford a hosted SQL instance and still come out ahead.</p>
http://stackoverflow.com/questions/1770973/can-a-static-class-be-instantiated-more-than-once-within-a-single-process/1771356#17713560Answer by Mark Brackett for Can a static class be instantiated more than once within a single process?Mark Brackett2009-11-20T15:45:54Z2009-11-20T15:45:54Z<blockquote>
<p>Can a single process with multiple threads cause a static class to be created more than once?</p>
</blockquote>
<p><a href="http://blogs.msdn.com/cbrumme/archive/2003/04/15/51317.aspx" rel="nofollow">Yes you can</a>, though it's somewhat unusual to do (or even want to). It requires either a separate <a href="http://msdn.microsoft.com/en-us/library/system.appdomain.aspx" rel="nofollow">AppDomain</a>, or use of <a href="http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx" rel="nofollow">ThreadStaticAttribute</a>. Either of those will give you a separate instance that does not share state with other static instances.</p>
<blockquote>
<p>If I just need a simple construct can I use a static class, or do I have to resort to a singleton?</p>
</blockquote>
<p>You can use either. A singleton allows you to use a non-static class like a static, and gives you some additional flexibility in managing lifetime. </p>
http://stackoverflow.com/questions/1771256/get-email-folder-from-mailitem-via-mapi-interface/1771283#17712831Answer by Mark Brackett for Get email folder from MailItem via MAPI interfaceMark Brackett2009-11-20T15:36:07Z2009-11-20T15:36:07Z<p>I think there's a Parent that you can check - it should return a MAPIFolder that you can check the Name of.</p>
http://stackoverflow.com/questions/1702094/asp-net-page-stops-working-for-no-reason-gridview-sqlexpress-search/1702124#17021240Answer by Mark Brackett for asp.net page stops working for no reason (gridview/sqlexpress search)Mark Brackett2009-11-09T16:26:47Z2009-11-09T16:26:47Z<p>Sounds like it's giving you a redirect to GET. My guess is you're set to use Forms Authentication, and it's timing out. Try increasing the timeout, or removing authentication.</p>
<p>You could use Fiddler to verify that it's redirecting you.</p>
http://stackoverflow.com/questions/1594711/how-to-retrieve-net-type-of-given-storedprocedures-parameter-in-sql/1662424#16624241Answer by Mark Brackett for How to retrieve .NET type of given StoredProcedure's Parameter in SQL?Mark Brackett2009-11-02T16:55:45Z2009-11-02T16:55:45Z<p>If you can resolve to the correct SqlType, Reflection will get you the explicit cast to a .NET type. The return value would be the underlying System.Type. Caching the result should make up for the perf on 1st lookup.</p>
http://stackoverflow.com/questions/279112/retrieving-the-com-class-factory-for-component-with-clsid-xxxx-failed-due-to-th/279317#2793172Answer by Mark Brackett for Retrieving the COM class factory for component with CLSID {XXXX} failed due to the following error: 80080005Mark Brackett2008-11-10T21:55:09Z2009-10-13T16:03:38Z<p>Seems to be a rather generic error relating to starting up the COM server. Possible issues include <a href="http://blogs.msdn.com/adioltean/archive/2005/06/24/432519.aspx" rel="nofollow">timeouts</a>, <a href="http://alt.pluralsight.com/wiki/default.aspx/Keith/ComSecurityFaqEx2.html" rel="nofollow">logon failures</a> (check the Q about <code>CO_E_SERVER_EXEC_FAILURE</code>), or <a href="http://www.devguy.com/fp/Tips/COM/" rel="nofollow">security permissions</a>, or (evidently) a <a href="http://blogs.msdn.com/jigarme/archive/2008/05/08/cocreateinstance-returns-0x80080005-for-visual-studio-2008-based-atl-service.aspx" rel="nofollow">VS2008 ATL bug</a>. Hitting an error in CreateInstance would do the trick as well, I think.</p>
<p>I'd start by checking Event Log for anything interesting.</p>
http://stackoverflow.com/questions/1547890/trying-to-figure-out-the-best-database-schema/1547904#15479040Answer by Mark Brackett for trying to figure out the best database schemaMark Brackett2009-10-10T13:13:04Z2009-10-10T16:59:40Z<blockquote>
<p>[T]he contact right now is the whole family as one invitation is sent to one family</p>
</blockquote>
<p>In that case, and absent any other requirements, I'd probably suggest a similar route to what you've already proposed. </p>
<p>The redundant fields aren't an issue, since they are tracking a unique fact about the <code>Invitation</code>, not the contact.</p>
<p>I'd probably keep a separate table for the <code>Response</code> (with number attending, which may be different from number invited) or an <code>Attendee</code> table, but it's not really necessary given your current requirements.</p>
http://stackoverflow.com/questions/1544142/whats-the-standard-approach-to-making-calculations-thread-safe/1544953#15449531Answer by Mark Brackett for What's the standard approach to making calculations thread-safe?Mark Brackett2009-10-09T16:57:42Z2009-10-09T16:57:42Z<blockquote>
<p>I could put a lock around all points in the code where these values are updated:</p>
</blockquote>
<pre><code>protected void ItemAdded(double item) {
// ...
lock (this.CalculationLock) {
this.Sum += item;
this.Sum2 += (item * item);
}
}
</code></pre>
<blockquote>
<p>Then if I lock on this same object when calculating StandardDeviation, I thought that would, finally, fix the problem. It didn't. The value is still coming in as NaN on a fleeting, infrequent basis.</p>
</blockquote>
<p>That's <em>exactly</em> what you should do for correctness. If that's not working for you, I'd suggest that either you missed an update scenario - or you have some other issue (like Sum or Sum2 occasionally being <code>NaN</code> or an unexpected value because of some <em>other</em> race condition).</p>
http://stackoverflow.com/questions/1523619/how-to-validate-datetime-format/1523648#15236481Answer by Mark Brackett for how to validate datetime formatMark Brackett2009-10-06T04:51:11Z2009-10-06T04:51:11Z<p>If you're using WebForms, just use a <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.comparevalidator.aspx" rel="nofollow">CompareValidator</a>:</p>
<pre><code><asp:CompareValidator runat="server" ControlToValidate="txtInput" Type="Date"
Operator="DataTypeCheck" ErrorMessage="That's not a valid date!" />
</code></pre>
http://stackoverflow.com/questions/1511269/vb-net-preprocessor-directives1VB.NET Preprocessor DirectivesMark Brackett2009-10-02T19:02:13Z2009-10-02T20:41:06Z
<p>Why doesn't <code>#IF Not DEBUG</code> work the way I'd expect in VB.NET?</p>
<pre><code>#If DEBUG Then
Console.WriteLine("Debug")
#End If
#If Not DEBUG Then
Console.WriteLine("Not Debug")
#End If
#If DEBUG = False Then
Console.WriteLine("Not Debug")
#End If
' Outputs: Debug, Not Debug
</code></pre>
<p>But, a manually set const does:</p>
<pre><code>#Const D = True
#If D Then
Console.WriteLine("D")
#End If
#If Not D Then
Console.WriteLine("Not D")
#End If
' Outputs: D
</code></pre>
<p>And, of course, C# has the expected behavior as well:</p>
<pre><code>#if DEBUG
Console.WriteLine("Debug");
#endif
#if !DEBUG
Console.WriteLine("Not Debug");
#endif
// Outputs: Debug
</code></pre>
http://stackoverflow.com/questions/1511269/vb-net-preprocessor-directives/1511696#15116960Answer by Mark Brackett for VB.NET Preprocessor DirectivesMark Brackett2009-10-02T20:41:06Z2009-10-02T20:41:06Z<p>Turns out, it's not <em>all</em> of VB.NET that's broken - just the CodeDomProvider (which both ASP.NET and Snippet Compiler use).</p>
<p>Given a simple source file:</p>
<pre><code>Imports System
Public Module Module1
Sub Main()
#If DEBUG Then
Console.WriteLine("Debug!")
#End If
#If Not DEBUG Then
Console.WriteLine("Not Debug!")
#End If
End Sub
End Module
</code></pre>
<p>Compiling with vbc.exe version 9.0.30729.1 (.NET FX 3.5):</p>
<pre><code>> vbc.exe default.vb /out:out.exe
> out.exe
Not Debug!
</code></pre>
<p>That makes sense...I didn't define DEBUG, so it shows "Not Debug!".</p>
<pre><code>> vbc.exe default.vb /out:out.exe /debug:full
> out.exe
Not Debug!
</code></pre>
<p>And, using CodeDomProvider:</p>
<pre><code>Using p = CodeDomProvider.CreateProvider("VisualBasic")
Dim params As New CompilerParameters() With { _
.GenerateExecutable = True, _
.OutputAssembly = "out.exe" _
}
p.CompileAssemblyFromFile(params, "Default.vb")
End Using
> out.exe
Not Debug!
</code></pre>
<p>Okay, again - that makes sense. I didn't define DEBUG, so it shows "Not Debug". But, what if I include debug symbols?</p>
<pre><code>Using p = CodeDomProvider.CreateProvider("VisualBasic")
Dim params As New CompilerParameters() With { _
.IncludeDebugInformation = True, _
.GenerateExecutable = True, _
.OutputAssembly = "C:\Users\brackett\Desktop\out.exe" _
}
p.CompileAssemblyFromFile(params, "Default.vb")
End Using
> out.exe
Debug!
Not Debug!
</code></pre>
<p>Hmm...I didn't define DEBUG, but maybe it defined it for me? But if it did, it must have defined it as "1" - because I can't get that behavior with any other value. ASP.NET, using the CodeDomProvider, <a href="http://odetocode.com/Blogs/scott/archive/2005/12/01/2559.aspx" rel="nofollow">must define it the same way</a>.</p>
<p>Looks like the CodeDomProvider is tripping over VB.NET's stupid <a href="http://www.nerdymusings.com/LPMArticle.asp?ID=16" rel="nofollow">psuedo-logical operators</a>.</p>
<p>Moral of the story? <code>#If Not</code> is not a good idea for VB.NET.</p>
http://stackoverflow.com/questions/1509297/an-aspx-page-is-called-sometime-and-some-time-not/1509309#15093094Answer by Mark Brackett for An aspx page is called sometime and some time notMark Brackett2009-10-02T12:47:37Z2009-10-02T12:47:37Z<p>Sounds like it may be cached. Try setting </p>
<pre><code>Response.Cache.SetCacheability(HttpCacheability.NoCache)
</code></pre>
<p>on your generateimage.aspx page.</p>
http://stackoverflow.com/questions/1484046/preserve-historical-data/1484119#14841190Answer by Mark Brackett for Preserve historical data.Mark Brackett2009-09-27T18:21:38Z2009-09-27T18:21:38Z<p>You could do a copy on write instead. Just show last month's "Decisions", and let the user pick and edit them. But, when it's "saved", you'd insert a new row instead of updating. That makes last month's "Decisions" more of a template for this months rather than an absolute.</p>
<p>The choice between the two would probably weigh pretty heavily on what you do if the user <em>doesn't</em> want last month's "Decisions" for this month. Are you deleting the extra rows? Do they automatically take effect with no user input, or are they deactivated when created, etc.</p>
<p>Another option could be a versioning mechanism. Each "Decision" gets an Id and a version (or Effective Date). Each month's Decision has both the DecisionId and the DecisionVersion. Updating "key fields" of the Decision results in a new version being created. That keeps a history of changes and a lineage for each "Decision".</p>
<p>Versioning would make sense to me in a scenario like "Automatic Savings Plan". You'd create a "Decision" with a name "Automatic Savings Plan", and you'd be able to change the amount, source accounts, etc. - but they'd still be part of the "Automatic Savings Plan" Decision.</p>
http://stackoverflow.com/questions/1468170/why-the-reset-method-on-enumerator-class-must-throw-a-notsupportedexception/1469072#14690721Answer by Mark Brackett for Why the Reset() method on Enumerator class must throw a NotSupportedException()?Mark Brackett2009-09-23T23:38:30Z2009-09-23T23:38:30Z<p>That's not how I read the <a href="http://download.microsoft.com/download/3/8/8/388e7205-bc10-4226-b2a8-75351c669b09/CSharp%20Language%20Specification.doc" rel="nofollow">C# spec</a> [Word doc]. Section 10.14.4 "Enumerator objects", states:</p>
<blockquote>
<p>...[E]numerator objects do not support the IEnumerator.Reset method. Invoking this method causes a System.NotSupportedException to be thrown.</p>
</blockquote>
<p>However, this section (and statement) is specific to "enumerator objects", which is defined as:</p>
<blockquote>
<p>When a function member returning an enumerator interface type is implemented using an iterator block, invoking the function member does not immediately execute the code in the iterator block. Instead, an <b>enumerator object</b> is created and returned.</p>
</blockquote>
<p>In other words, an "enumerator object" is a <em>compiler</em> generated <code>IEnumerator</code><sup>1</sup>. There's no restrictions on every <code>IEnumerator</code>, just the ones generated from iterator blocks (aka <code>yield</code>).</p>
<p>As for why? I'd suspect because it's somewhat impossible to do in the general case - without saving every value and the consequent memory limitations of that. Combine that with the fact that <code>IEnumerator.Reset()</code> is rarely used (when's the last time that you Reset an enumerator?) and that <a href="http://msdn.microsoft.com/en-us/library/system.collections.ienumerator.reset.aspx" rel="nofollow">MSDN specifically calls out that it need not be implemented</a>:</p>
<blockquote>
<p>The Reset method is provided for COM interoperability. It does not necessarily need to be implemented; instead, the implementer can simply throw a NotSupportedException.</p>
</blockquote>
<p>and you get to cut out a lot of complexity without anyone really noticing. </p>
<p>As for <em>requiring</em> that it throw<sup>2</sup>, I suppose it's just simpler than letting the implementor decide. IMO, it's a bit much to require the throw - there may be reasonable cases that a compiler (or other implementation<sup>1</sup>) could generate a Reset method for, but I don't see it as being a real problem either.</p>
<p><sup>1</sup> Technically, the spec leaves open the possibility of other implementations:</p>
<blockquote>
<p>An enumerator object is typically an instance of a compiler-generated enumerator class that encapsulates the code in the iterator block and implements the enumerator interfaces, but other methods of implementation are possible.</p>
</blockquote>
<p>but I'm not aware of any other concrete implementations. Regardless, to be compliant, other implementations of an "enumerator object" would have to throw <code>NotSupportedException</code> as well.</p>
<p><sup>2</sup> Nitpicker's corner: I think there may be some quibble even in the "requirement" to throw. The spec, in not using the preferred <a href="http://www.ietf.org/rfc/rfc2119.txt" rel="nofollow">"MUST, SHOULD, MAY"</a> verbiage, leaves it a bit open. I read "causes" more as a note of implementation - not a requirement. Then again, I haven't read the entire spec, so perhaps they define these terms a bit more or are more explicit somewhere else.</p>
http://stackoverflow.com/questions/1441902/c-newbie-how-do-i-fix-this-code-to-do-a-dns-lookup/1442071#14420711Answer by Mark Brackett for C# Newbie: How do I fix this code to do a DNS lookup?Mark Brackett2009-09-18T00:40:01Z2009-09-18T00:40:01Z<p>This line looks a bit off to me:</p>
<pre><code>IntPtr addressCharArray = Marshal.ReadIntPtr(recTxt.pStringArray, i * 4);
</code></pre>
<p>It looks like you'd be reading the first 4 bytes of the first string entry of the TXT record as an IntPtr. I think something like:</p>
<pre><code>string s = Marshal.PtrToStringAuto(recTxt.pStringArray);
</code></pre>
<p>would get you the first entry. After that, I think something like:</p>
<pre><code>IntPtr p = new IntPtr(recTxt.pStringArray.ToInt32() + sizeof(uint) * i);
string s = Marshal.PtrToStringAuto(p);
</code></pre>
<p>would get the remainders.</p>
http://stackoverflow.com/questions/1438320/asp-net-accessing-cookie-value-in-sessionend-event-of-global-asax/1438372#14383720Answer by Mark Brackett for ASP.NET Accessing cookie value in session_end event of global.asaxMark Brackett2009-09-17T11:49:02Z2009-09-17T11:49:02Z<p>Session_End isn't run in the context of a user request, so there's no access to cookies (or any other request variables).</p>
<p>If you put the value into Session, I think you can access that:</p>
<pre><code>string cookyval = "";
try
{
cookyval = (string)Session["parentPageName"];
}
catch (Exception ex)
{
cookyval = "";
}
</code></pre>
<p>Otherwise, you'd need to write it to some other server side storage (like a database).</p>
http://stackoverflow.com/questions/1434782/separate-declaration-and-creation-of-dictionary-with-anonymous-key/1434964#14349642Answer by Mark Brackett for Separate declaration and creation of dictionary with anonymous keyMark Brackett2009-09-16T19:22:14Z2009-09-16T21:46:08Z<p>Declare and add a single element above the try, and then add the rest inside. Since you're specifically worried about duplicate keys, adding the first key/item gets you the type without the risk.</p>
<p>EDIT: I think just inferring the type, without adding the first element, is slightly better. While the usage is a bit cumbersome, it'll make it easier to add remaining elements (as opposed to clearing the dictionary, and then adding - or having to add everything after the 1st one - really only cleanly doable if you're consuming an IEnumerable).</p>
<pre><code>var dict1 = InferDictionary(new { Value1 = 0, Value2 = "string" }, new DataItem());
try {
data1.AddToDictionary(
dict1,
dim => new { Value1 = dim.Val1, Value2 = dim.Val2 }
);
} catch ... {
...
}
static IDictionary<TKey, TValue> InferDictionary<TKey, TValue>(TKey keyPrototype, TValue valuePrototype) {
return new Dictionary<TKey, TValue>();
}
</code></pre>
<p>Or, create a convenience function to catch the exception for you:</p>
<pre><code>var dict1 = TryCatch(
() =>
data1.ToDictionary(dim => new {
Value1 = dim.Val1,
Value2 = dum.Val2
}
, (ArgumentException ex) => {
Console.WriteLine("Duplicate values in Data1 {0}", ex);
// throw(ex) works as well, and shouldn't screw the callstack up much
// But I happen to like making it explicit
return false;
}
);
static TResult TryCatch<TResult, TException>(Func<TResult> @try, Func<TException, bool> @catch) where TException : Exception {
try {
return @try();
} catch (Exception ex) {
TException tEx = ex as TException;
if (tEx != null && @catch(ex)) {
// handled
} else {
throw;
}
}
}
</code></pre>
<p>The caveat of this is that you can't call <code>TryCatch<,></code> in the "natural" ways:</p>
<pre><code>// Not enough info to infer TException
var d = TryCatch(() => DoStuff(), ex => true);
// Can't infer only TResult
var d = TryCatch<ArgumentException>(() => DoStuff(), ex => true);
</code></pre>
<p>which, since you can't specify <code>TResult</code>, forces you into the somewhat odd syntax of declaring <code>TException</code> on the lambda:</p>
<pre><code>var d = TryCatch(() => DoStuff(), (ArgumentException ex) => true);
</code></pre>
http://stackoverflow.com/questions/1402985/how-would-i-protect-an-api-from-abuse/1403013#14030130Answer by Mark Brackett for How would I protect an API from abuse?Mark Brackett2009-09-10T01:48:49Z2009-09-10T01:48:49Z<p>Require a token to upload, and restrict the token with a CAPTCHA. Consuming code would be something like:</p>
<pre><code>// 1st request
var uploadToken = api.RequestToken(sessionIdFromUser);
if (uploadToken.RequireChallenge) {
// requires challenge due to per IP limiting
// uploadToken.Captcha could be a URL
DisplayView(uploadToken.Captcha, uploadToken.SessionId);
return;
}
api.Upload(uploadToken, captchaFromUser, byte[]);
</code></pre>
http://stackoverflow.com/questions/1396164/why-doesnt-net-find-the-openssl-net-dll/1396981#13969810Answer by Mark Brackett for Why doesn't .NET find the OpenSSL.NET dll?Mark Brackett2009-09-09T00:14:39Z2009-09-09T00:14:39Z<p>You're probably missing the VC++ redistributables. I'm assuming OpenSSL.NET is x86 only, so you can <a href="http://www.microsoft.com/DOWNLOADS/details.aspx?familyid=D5692CE4-ADAD-4000-ABFE-64628A267EF0&displaylang=en" rel="nofollow">grab the VS2008 version x86 redistributable</a> if they're release builds. </p>
<p>Otherwise, if they're debug builds (you'll see Microsoft.VC90.DebugCRT in EventViewer or the sxstrace logs) then you'll need to either: </p>
<ul>
<li>Rebuild them as release</li>
<li>Install or copy the debug redistributables from another machine</li>
<li>Install Visual C++ into Visual Studio (or, probably, Visual C++ Express)</li>
</ul>
http://stackoverflow.com/questions/1370236/what-does-somemethod-x-something-mean-in-c/1370304#13703045Answer by Mark Brackett for What does SomeMethod(() => x.Something) mean in C#Mark Brackett2009-09-02T21:43:49Z2009-09-02T21:43:49Z<blockquote>
<p>What do the first brackets mean in the expression?</p>
</blockquote>
<p>It's the lambda syntax for a method that takes no parameters. If it took 1 parameter, it'd be:</p>
<pre><code>SomeMethod(x => x.Something);
</code></pre>
<p>If it took n + 1 arguments, then it'd be:</p>
<pre><code>SomeMethod((x, y, ...) => x.Something);
</code></pre>
<blockquote>
<p>I'm also curious how you can get the property name from argument that is being passed in. Is this possible?</p>
</blockquote>
<p>If your <code>SomeMethod</code> takes an <code>Expression<Func<T>></code>, then yes:</p>
<pre><code>void SomeMethod<T>(Expression<Func<T>> e) {
MemberExpression op = (MemberExpression)e.Body;
Console.WriteLine(op.Member.Name);
}
</code></pre>
http://stackoverflow.com/questions/1356962/how-to-get-the-mac-address-of-the-visitors-pc-in-an-asp-net-webapp/1357071#13570711Answer by Mark Brackett for How to get the MAC address of the visitors' PC in an ASP.NET webApp?Mark Brackett2009-08-31T11:47:23Z2009-08-31T11:47:23Z<p>Since you're on the same subnet, you can <a href="http://www.pinvoke.net/search.aspx?search=GetIpNetTable&namespace=%5BAll%5D" rel="nofollow">P/Invoke</a> <a href="http://msdn.microsoft.com/en-us/library/aa365956%28VS.85%29.aspx" rel="nofollow">GetIpNetTable</a> to get the webserver's ARP table. If you do this real-time, no additional work would be necessary - since you're having a conversation with the client, you'll have the ARP info. Otherwise, you'd need to construct an ARP request or some IP traffic (say, a p<a href="http://msdn.microsoft.com/en-us/library/system.net.networkinformation.ping.aspx" rel="nofollow">ing</a>) to get it in the cache - and note that due to DHCP and other network vagaries (like a machine being turned off), it is possible that converting IP to MAC later will yield a different answer.</p>
<p>Note also that any external clients (ie., ones across a router) just won't show up in the <a href="http://msdn.microsoft.com/en-us/library/aa366870%28VS.85%29.aspx" rel="nofollow">table</a> - so be prepared to deal with that as well. If you need a MAC for them for some reason, it's technically your router's MAC.</p>
http://stackoverflow.com/questions/1356960/asp-net-how-to-set-a-property-to-every-object-of-a-specific-type/1357024#13570240Answer by Mark Brackett for ASP.NET How to set a property to every object of a specific typeMark Brackett2009-08-31T11:33:38Z2009-08-31T11:33:38Z<p>Derive a control, and then use the little known <a href="http://msdn.microsoft.com/en-us/library/ms164641.aspx" rel="nofollow">tagMapping</a> feature to replace it across the app.</p>
<pre><code> class MyTextBox : TextBox {
public MyTextBox() : base() {
this.Text = "Please insert text";
}
}
<pages>
<tagMapping>
<add tagType="System.Web.UI.WebControls.TextBox"
mappedTagType="MyTextBox, MyWebControls.dll" />
</tagMapping>
</pages>
</code></pre>
http://stackoverflow.com/questions/1355271/using-c-attributes-to-take-inputs-to-make-a-ui-agnostic-system/1355312#13553120Answer by Mark Brackett for Using C# Attributes to take inputs to make a UI agnostic systemMark Brackett2009-08-31T00:27:32Z2009-08-31T00:27:32Z<p>Sure, you'd just need something to bind those to a UI - I'll take an easy way out and assume a form with a single textbox. Depending on your requirements, a PropertyInfo grid or something may be more appropriate. </p>
<p>Something like:</p>
<pre><code>class PluginUIBuilder {
public void Fill(IPluginSystem p) {
var t = ((object)p).GetType();
foreach (var pi in t.GetProperties()) {
if (pi.GetCustomAttributes(typeof(ExternalInput), true).Length > 0) {
string value = Prompt(pi.Name);
pi.SetValue(p, value, null);
}
}
}
string Prompt(string name) {
using (var f = new InputForm()) {
f.Prompt = "Enter a value for " + name;
if (f.ShowDialog() = DialogResult.OK) {
return f.Value;
}
return null;
}
}
}
// client code
var p = new MyPlugin();
var ui = new PluginUIBuilder();
ui.Fill(p);
p.Execute();
</code></pre>
<p>You'll probably want to add properties to your attribute for things like descriptions, a convert function or class (may want to leverage the builtin <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.typeconverter.aspx" rel="nofollow">type converters</a>), validation, etc. </p>
<p>At the end of the day, if you take this too far - you've just built the WinForm design surface. But, I've used Property Info grids for prompts for otherwise command line apps to decent success with very little code.</p>
http://stackoverflow.com/questions/1353111/check-all-checkboxes/1353127#13531270Answer by Mark Brackett for Check All CheckboxesMark Brackett2009-08-30T04:54:43Z2009-08-30T04:54:43Z<pre><code>Protected Sub LinkButton1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkButton1.Click
CheckAll(Me, "ClientCheckBox_")
End Sub
Sub CheckAll(parent as Control, startsWith as String)
Dim cb as CheckBox = TryCast(parent, CheckBox)
If cb IsNot Nothing AndAlso cb.Text.StartsWith(startsWith) Then
cb.Checked = True
End If
For Each c as Control in parent
CheckAll(c, startsWith)
Next
End Sub
</code></pre>
http://stackoverflow.com/questions/1352468/provide-users-with-a-search-feature-filtering-a-dropdownlist/1352558#13525580Answer by Mark Brackett for Provide users with a search feature filtering a dropdownlistMark Brackett2009-08-29T22:35:14Z2009-08-29T22:35:14Z<p>I think a textbox would actually be <em>preferred</em> for this. A select box doesn't invite typing - so it becomes a bit of a hidden trick to filter it (not to mention that Firefox will pretty much do it right anyway).</p>
<p>You can easily throw an image next to a textbox to indicate that it has options, which allows both mouse driven or keyboard driven interaction. </p>
<p>I'm partial to JQuery, so I'd use <a href="http://jquery.bassistance.de/autocomplete/demo/" rel="nofollow">JQuery's autocomplete</a> - which has config options to require a match, or that clicking the box will drop down all items.</p>
<p>If you're interested in "progressive enhancement", you may be best off with both a traditional select input (for accessibility) that gets <em>replaced</em> by an autocomplete textbox driven off the same data. Something like:</p>
<pre><code><select id="s">
<option value="foo">Foo</value>
<option value="bar">Bar</value>
</select>
var d = $('#s OPTION').map(function() {
return $(this).text();
});
$('#s').hide().append('<input type="text" />')
.autocomplete(d, {
mustMatch: true,
minChars: 0,
autoFill: true,
matchContains: false
})
.result(function(e, d, f) {
// Select option for the form to submit
$('#s').val(d);
});
</code></pre>
<p>You could also leave the select visible - which makes it more flexible, but potentially more confusing - and hook an event handler to the select box to update the textbox as well so that they stay in sync.</p>
http://stackoverflow.com/questions/1340475/n-tier-architecture-and-asp-net-datasources/1340537#13405371Answer by Mark Brackett for N tier architecture and ASP.NET datasources Mark Brackett2009-08-27T11:39:54Z2009-08-27T11:39:54Z<p>Object DataSource, or possibly LINQ DataSource, could be used and arguably be called N-Tier.</p>
<p>But, direct access to the database via a SqlDataSource would not.</p>
http://stackoverflow.com/questions/1337379/still-having-problems-understanding-asp-net-events-whats-the-point-of-them/1337548#13375481Answer by Mark Brackett for Still having problems understanding ASP.NET events. What's the point of them?Mark Brackett2009-08-26T21:18:24Z2009-08-26T21:18:24Z<p>I think you're confusing ASP.NET's (mis)use of events, with plain ol' event handling. </p>
<p>We'll start with plain ol' event handling. Events is a (yet another) way of fulfilling the <a href="http://en.wikipedia.org/wiki/Open/closed%5Fprinciple" rel="nofollow">"Open [for extension]/Closed [for modification]" principle</a>. When your class exposes an event, it allows external classes (perhaps classes that aren't even thought of, much less built, yet) to have code run by <em>your class</em>. That's a pretty powerful extension mechanism, and it doesn't require your class to be modified in any way. </p>
<p>As an example, consider a web server, that knows how to accept a request, but doesn't know how to process a file (I'll use bi-directional events here, where the handler can pass data back to the event source. Some would argue that's not kosher, but it's the first example that came to mind):</p>
<pre><code>class WebServer {
public event EventHandler<RequestReceivedEventArgs> RequestReceived;
void ReceiveRequest() {
// lots of uninteresting network code here
var e = new RequestReceivedEventArgs();
e.Request = ReadRequest();
OnRequestReceived(e);
WriteResponse(e.Response);
}
void OnRequestReceived(RequestReceivedEventArgs e) {
var h = RequestReceived;
if (h != null) h(e);
}
}
</code></pre>
<p>Without changing the source code of that class - maybe it's in a 3rd party library - I can add a class that knows how to read a file from disk:</p>
<pre><code>class FileRequestProcessor {
void WebServer_RequestReceived(object sender, EventArgs e) {
e.Response = File.ReadAllText(e.Request);
}
}
</code></pre>
<p>Or, maybe an ASP.NET compiler:</p>
<pre><code>class AspNetRequestProcessor {
void WebServer_RequestReceived(object sender, EventArgs e) {
var p = Compile(e.Request);
e.Response = p.Render();
}
}
</code></pre>
<p>Or, maybe I'm just interested in knowing that an event <em>happened</em>, without affecting it at all. Say, for logging:</p>
<pre><code>class LogRequestProcessor {
void WebServer_RequestReceived(object sender, EventArgs e) {
File.WriteAllText("log.txt", e.Request);
}
}
</code></pre>
<p>All of these classes are basically "injecting" code in the middle of <code>WebServer.OnRequestReceived</code>.</p>
<p>Now, for the ugly part. ASP.NET has this annoying little habit of having you write event handlers to handle <em>your own events</em>. So, the class that you're inheriting from (<code>System.Web.UI.Page</code>) has an event called <code>Load</code>:</p>
<pre><code> abstract class Page {
public event EventHandler Load;
virtual void OnLoad(EventArgs e) {
var h = this.Load;
if (h != null) h(e);
}
}
</code></pre>
<p>and you want to run code when the page is loaded. Following the Open/Closed Principle, we can either inherit and override:</p>
<pre><code> class MyPage : Page {
override void OnLoad(EventArgs e) {
base.OnLoad(e);
Response.Write("Hello World!");
}
}
</code></pre>
<p>or use eventing:</p>
<pre><code> class MyPage : Page {
MyPage() {
this.Load += Page_Load;
}
void Page_Load(EventArgs e) {
Response.Write("Hello World!");
}
}
</code></pre>
<p>For some reason, Visual Studio and ASP.NET prefer the eventing approach. I suppose you can then have <em>multiple</em> handlers for the <code>Load</code> event, and they would all get run auto-magically - but I never see anyone doing that. Personally, I prefer the override approach - I think it's a bit clearer and you'll never have the question of "why am I subscribed to my own events?".</p>
http://stackoverflow.com/questions/1320447/can-this-api-be-improved/1331551#1331551-2Answer by Mark Brackett for Can this API be improved?Mark Brackett2009-08-25T23:18:17Z2009-08-25T23:18:17Z<blockquote>
<p>In our CORE library we offer this class as a 20,000 line abstraction....</p>
</blockquote>
<p>20k lines? Seriously? It's not the API surface that's your problem then. I mean surely, <code>CompressString(string)</code> is just calling into <code>CompressString(string, Format, Level)</code> - right? And surely <code>CompressString(string, Format, Level)</code> basically consists of:</p>
<pre><code>byte[] b = System.Text.Encoding.Default.GetBytes(input);
byte[] c = CompressBytes(b, format, level);
return Convert.ToBase64(c);
</code></pre>
<p>which is all of 3 lines - with the temp variables. I can think of similar implementations of the rest.</p>
<p>So - that leads me to believe that <code>CompressBytes(byte[], Format, Level)</code> must be around 19,500 lines. I'd say <em>that's</em> your problem. </p>
http://stackoverflow.com/questions/1324317/winhttp-connect/1325719#13257190Answer by Mark Brackett for WinHTTP Connect Mark Brackett2009-08-25T02:12:15Z2009-08-25T02:12:15Z<p>CONNECT isn't a HTTP verb, it's the start of a HTTPS request ({the SSL connect portion). With WinHTTP, you just use the <code>WINHTTP_FLAG_SECURE</code> on OpenRequest. Something like:</p>
<pre><code>hConnect = WinHttpConnect(
hSession,
"www.etrade.com",
443,
0
);
hRequest = WinHttpOpenRequest(
hConnect,
"GET",
"/",
"HTTP/1.0",
WINHTTP_NO_REFERER,
WINHTTP_DEFAULT_ACCEPT_TYPES,
WINHTTP_FLAG_SECURE
);
</code></pre>
<p>That gets you a CONNECT (for the SSL connection), and then a <code>GET /</code> (for the HTTP portion).</p>
http://stackoverflow.com/questions/1325608/force-mail-client-to-use-text-rather-then-html-through-mailto/1325679#13256793Answer by Mark Brackett for Force mail client to use text rather then HTML through mailto:Mark Brackett2009-08-25T01:56:34Z2009-08-25T01:56:34Z<p>There's nothing you can do (besides education) on the client - there's nothing in <a href="http://tools.ietf.org/html/rfc2368" rel="nofollow">mailto</a> to control a client side program. And, frankly, with the proliferation of web-based email - I think mailto is showing it's age.</p>
<p>Outlook should <a href="http://en.wikipedia.org/wiki/HTML%5Fe-mail#Multi-part%5Fformats" rel="nofollow">send a <code>mime/multipart</code> message</a>, with <em>both</em> plain text and HTML parts. I'd guess you could extend or patch Trac to only grab the <code>text/plain</code> portion.</p>
<p>Otherwise, just create a form in your app to capture the email info. Again, if someone is using Hotmail or GMail - mailto is not likely to work anyway (or will open up their unconfigured Outlook Express, where they will dutifully type up an email and press Send. Only it won't go anywhere, because no SMTP servers are configured - so it will languish in the Outbox for years. Not that they will notice though...).</p>
http://stackoverflow.com/questions/1838869/service-cannot-be-startedComment by Mark Brackett on Service cannot be startedMark Brackett2009-12-03T14:46:17Z2009-12-03T14:46:17ZPost code for OnStarthttp://stackoverflow.com/questions/1718413/generic-list-removeall-and-lamda-expressionsComment by Mark Brackett on Generic List RemoveAll and lamda expressionsMark Brackett2009-11-11T22:15:29Z2009-11-11T22:15:29ZYou need to post more code...the code you posted wouldn't cause that exception....http://stackoverflow.com/questions/1557592/is-using-a-singleton-for-the-connection-a-good-idea-in-asp-net-website/1557614#1557614Comment by Mark Brackett on Is using a singleton for the connection a good idea in ASP.NET websiteMark Brackett2009-10-13T00:21:32Z2009-10-13T00:21:32ZWhile I agree that a singleton is a bad idea for SqlConnection, I don't see any indication that it'd be limited to a single request. There's no locking in the code that'd prevent multiple users of the SqlConnection object (which, if anything, just makes it that much worse of an idea because of threading issues).http://stackoverflow.com/questions/1523639/aspnet-master-pageComment by Mark Brackett on ASPNet Master PageMark Brackett2009-10-06T13:18:34Z2009-10-06T13:18:34ZHow about posting some code - I'm a bit unclear on what exactly you're trying to do...http://stackoverflow.com/questions/1511269/vb-net-preprocessor-directives/1511291#1511291Comment by Mark Brackett on VB.NET Preprocessor DirectivesMark Brackett2009-10-02T19:37:25Z2009-10-02T19:37:25ZIt's an ASP.NET website project, so it's compiled on demand. Snippet Compiler is also affected...the only thing I can think of is that it's an issue with the Microsoft.VisualBasic.VBCodeProvider (which, AFAIK, both ASP.NET and Snippet Compiler use instead of vbc.exe). Further investigation under way....http://stackoverflow.com/questions/1511269/vb-net-preprocessor-directives/1511291#1511291Comment by Mark Brackett on VB.NET Preprocessor DirectivesMark Brackett2009-10-02T19:22:52Z2009-10-02T19:22:52ZArgh. A new console app works as expected. Now I'm really confused....http://stackoverflow.com/questions/1511269/vb-net-preprocessor-directives/1511291#1511291Comment by Mark Brackett on VB.NET Preprocessor DirectivesMark Brackett2009-10-02T19:18:21Z2009-10-02T19:18:21ZHmmm...I've tried it both with VS2008 in an existing ASP.NET project, and then Snippet Compiler. I'll try a new Console project and see what happens.http://stackoverflow.com/questions/1444200/is-the-process-below-scalable-efficient-and-good-practice-for-sessiona-and-cookiComment by Mark Brackett on Is the process below scalable, efficient and good practice for sessiona and cookie handling?Mark Brackett2009-09-18T12:38:14Z2009-09-18T12:38:14ZYes. Or no. Or maybe. Let's just go with "it depends" since you've left out <i>a lot</i> of details.http://stackoverflow.com/questions/1441902/c-newbie-how-do-i-fix-this-code-to-do-a-dns-lookup/1442071#1442071Comment by Mark Brackett on C# Newbie: How do I fix this code to do a DNS lookup?Mark Brackett2009-09-18T03:20:07Z2009-09-18T03:20:07ZFirst tip I'd give is to not start with interop! ;) Besides that, I'm basically just an MSDN guy myself.http://stackoverflow.com/questions/1434782/separate-declaration-and-creation-of-dictionary-with-anonymous-key/1434964#1434964Comment by Mark Brackett on Separate declaration and creation of dictionary with anonymous keyMark Brackett2009-09-16T19:46:34Z2009-09-16T19:46:34ZYou can use a helper function to get the Dictionary created. AAMOF, you could just create an empty Dictionary, which would probably be more sensible - at the ugly tax of just using a parameter as a "prototype". You'd need to swap your data.ToDictionary method to AddToDictionary though.http://stackoverflow.com/questions/1402985/how-would-i-protect-an-api-from-abuse/1403001#1403001Comment by Mark Brackett on How would I protect an API from abuse?Mark Brackett2009-09-10T01:55:52Z2009-09-10T01:55:52ZDoesn't that conflict with "it's all completely anonymous"? I suppose you only have the info for the website, not the user...but still....http://stackoverflow.com/questions/1402985/how-would-i-protect-an-api-from-abuseComment by Mark Brackett on How would I protect an API from abuse?Mark Brackett2009-09-10T01:53:33Z2009-09-10T01:53:33Z@Remus - a malicious user would just randomly generate X_FORWARDED_FOR ip addresses.http://stackoverflow.com/questions/1356962/how-to-get-the-mac-address-of-the-visitors-pc-in-an-asp-net-webapp/1356972#1356972Comment by Mark Brackett on How to get the MAC address of the visitors' PC in an ASP.NET webApp?Mark Brackett2009-08-31T19:47:40Z2009-08-31T19:47:40ZAll that being said - I also prefer "positive" responses that give solutions (like IanT8's about an ActiveX control or an ARP service) rather than "negative" responses that state that it's not possible. Nothing personal, I just found your wording a bit imprecise and don't think the answer that states "it can't be done" should be ahead of answers that actually show <i>how it can be done</i>.http://stackoverflow.com/questions/1356962/how-to-get-the-mac-address-of-the-visitors-pc-in-an-asp-net-webapp/1356972#1356972Comment by Mark Brackett on How to get the MAC address of the visitors' PC in an ASP.NET webApp?Mark Brackett2009-08-31T19:43:44Z2009-08-31T19:43:44Z@Brian "This information is not transfer[r]ed between different IP networks and thus it will not be available as part of regular web traffic", that much is true. But it has nothing to do with the fact that it's not in the IP header - the IP header is irrelevant for MAC addresses whether you're on the same subnet or not. In other words, the MAC address [of the client] <i>is [sometimes] available</i>, but <i>is never</i> a part of the IP header. In the case of a remote subnet, the MAC address is for the next hop - which is probably not what you want - but all that your server will get from the network.
http://stackoverflow.com/questions/1356962/how-to-get-the-mac-address-of-the-visitors-pc-in-an-asp-net-webapp/1356972#1356972Comment by Mark Brackett on How to get the MAC address of the visitors' PC in an ASP.NET webApp?Mark Brackett2009-08-31T19:03:12Z2009-08-31T19:03:12Z@Brian - I <i>did</i> include a link to GetIpNetTable, which gives you the ARP table. Folks just seem to like your answer better. ;)