Mark Brackett

15,281
reputation
617 views

Registered User

name Mark Brackett
member for 1 year
seen yesterday
website
location Gainesville, FL USA
age 31
(NOSPAM)brackett-at-ufl[dot]edu
14h
awarded  Guru
Dec
6
awarded  Mortarboard
Dec
3
comment Service cannot be started
Post code for OnStart
Dec
3
answered Database on file server (Windows)
Dec
2
awarded  Nice Answer
Nov
20
accepted Get email folder from MailItem via MAPI interface
Nov
20
answered Can a static class be instantiated more than once within a single process?
Nov
20
answered Get email folder from MailItem via MAPI interface
Nov
11
comment Generic List RemoveAll and lamda expressions
You need to post more code...the code you posted wouldn't cause that exception....
Nov
9
revised Call Row_command event from javascript
code formatting
Nov
9
answered asp.net page stops working for no reason (gridview/sqlexpress search)
Nov
5
awarded  Nice Answer
Nov
2
answered How to retrieve .NET type of given StoredProcedure’s Parameter in SQL?
Oct
23
accepted What different ways can you write this
Oct
16
accepted Why the Reset() method on Enumerator class must throw a NotSupportedException()?
Oct
15
accepted N tier architecture and ASP.NET datasources
Oct
13
revised Retrieving the COM class factory for component with CLSID {XXXX} failed due to the following error: 80080005
Fixed links
Oct
13
comment Is using a singleton for the connection a good idea in ASP.NET website
While 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).
Oct
10
revised trying to figure out the best database schema
added 96 characters in body
Oct
10
answered trying to figure out the best database schema
Oct
9
accepted What’s the standard approach to making calculations thread-safe?
Oct
9
answered What’s the standard approach to making calculations thread-safe?
Oct
9
accepted VB.NET Preprocessor Directives
Oct
6
comment ASPNet Master Page
How about posting some code - I'm a bit unclear on what exactly you're trying to do...
Oct
6
answered how to validate datetime format
Oct
2
answered VB.NET Preprocessor Directives
Oct
2
comment VB.NET Preprocessor Directives
It'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....
Oct
2
comment VB.NET Preprocessor Directives
Argh. A new console app works as expected. Now I'm really confused....
Oct
2
comment VB.NET Preprocessor Directives
Hmmm...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.
Oct
2
asked VB.NET Preprocessor Directives
Oct
2
answered An aspx page is called sometime and some time not
Sep
30
awarded  Nice Answer
Sep
27
accepted Preserve historical data.
Sep
27
answered Preserve historical data.
Sep
23
answered Why the Reset() method on Enumerator class must throw a NotSupportedException()?
Sep
21
revised WinForms TextBox : how to reformat asynchronously, without firing TextChanged event
Fixed broken link
Sep
18
comment C# Newbie: How do I fix this code to do a DNS lookup?
First tip I'd give is to not start with interop! ;) Besides that, I'm basically just an MSDN guy myself.
Sep
18
accepted C# Newbie: How do I fix this code to do a DNS lookup?
Sep
18
answered C# Newbie: How do I fix this code to do a DNS lookup?
Sep
17
accepted New to web development. Skip WebForms and start with MVC?
Sep
17
answered ASP.NET Accessing cookie value in session_end event of global.asax
Sep
16
awarded  Great Answer
Sep
16
revised Separate declaration and creation of dictionary with anonymous key
added 1351 characters in body
Sep
16
comment Separate declaration and creation of dictionary with anonymous key
You 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.
Sep
16
accepted Separate declaration and creation of dictionary with anonymous key
Sep
16
answered Separate declaration and creation of dictionary with anonymous key
Sep
16
awarded  Taxonomist
Sep
15
accepted if statements in sql query
Sep
10
comment How would I protect an API from abuse?
Doesn't that conflict with "it's all completely anonymous"? I suppose you only have the info for the website, not the user...but still....
Sep
10
comment How would I protect an API from abuse?
@Remus - a malicious user would just randomly generate X_FORWARDED_FOR ip addresses.