Brian

882
reputation
106 views

Registered User

name Brian
member for 1 year
seen 17 hours ago
website
location US
age 37

I received a Computing and Software Systems (CSS) degree from the University of Washington in 1999 and have been working as a developer ever since. My focus has been on Microsoft development, in particular .Net (both WinForms and ASP.Net), but I also have experience in classic ASP and even a little COM.

My current position is Vice President of Product Development at TourFactory.com. We build a virtual tour product for real-estate agents.

2d
answered I am trying to send an email from my asp.net web application but the following exception come at SmtpMail.Send(mess);
Dec
6
accepted C# ImageButton Picture Resolution
Dec
4
answered WinForms strings in resource files, wired up in designer
Nov
30
accepted Single vs. multiple Linq2sql repositories
Nov
29
answered LINQ to SQL and Null strings, how do I use Contains?
Nov
25
answered Data Structure problem, don’t want to store a list as text
Nov
25
answered Single vs. multiple Linq2sql repositories
Nov
25
accepted Will closing a FileStream close the StreamReader?
Nov
24
comment Will closing a FileStream close the StreamReader?
@Bruno, I agree with you that the outer-most stream should be closed. Even if it doesn't do anything interesting other than close the inner stream, it is a good idea for exactly the reason you state, forward compatibility. It is also good practice so that you don't forget to do it when working with other streams that do need to be closed.
Nov
24
answered Faster to generate thumbnail and write to response in Handler or generate in Http module and let IIS handler the rest??
Nov
24
revised Will closing a FileStream close the StreamReader?
Added comment about closing the outer stream.
Nov
24
answered Will closing a FileStream close the StreamReader?
Nov
24
comment Deploying NLog with a ClickOnce application
I never found one. I ended up removing NLog and writing my own logger (obviously much simplified) :(
Nov
23
revised Saving DateTime object on UK Dev Server vs US Live Server
edited body
Nov
22
answered Saving DateTime object on UK Dev Server vs US Live Server
Nov
22
answered How can I make this repeated code more elegant?
Nov
21
answered Fastest way to list all files + dirs in .NET
Nov
21
revised WebClient UploadFile errors
added 436 characters in body
Nov
21
answered Hidden Features of C#?
Nov
21
answered C# ImageButton Picture Resolution
Nov
14
accepted ASP.NET MVC - Localization route
Nov
13
answered How to avoid View specific code in my ViewModel
Nov
13
comment ASP.NET MVC - Localization route
You could probably set up "route inheritance" easily enough. Just add the route I mentioned before the default MVC route and either remove the defaults or use a regular expression to determine if the culture route should be used. If you don't, the default controller would never get hit. There might be a way to automatically get the MVC ActionLink methods to put the culture into the url. Html.ActionLink does allow you to specify route values. I have not tried this before so I am not sure if this would work for you or not.
Nov
13
answered Migrate (monolithic) Classic ASP to ASP.Net
Nov
13
accepted WebClient UploadFile errors
Nov
13
answered WebClient UploadFile errors
Nov
12
comment ASP.NET MVC - Localization route
I updated my answer with information about how to modify the route to allow for culture in the url.
Nov
12
revised ASP.NET MVC - Localization route
Added information about how to modify route to allow for culture.
Nov
11
comment ASP.NET MVC - Localization route
I understood that. What I suggested was a way to do it without adding it to the routes. Adding it to the routes needlessly complicates the application.
Nov
11
accepted ASP.NET page change causes an object array in Session to be unable to cast to it’s own type??
Nov
11
answered ASP.NET page change causes an object array in Session to be unable to cast to it’s own type??
Nov
11
answered almost newbie sql question
Nov
11
accepted VBscript and ADO - 3704 Operation is not allowed when the object is closed.
Nov
11
answered ASP.NET MVC - Localization route
Nov
11
answered Facebook Connect FBML not rendering HTML?
Nov
11
answered Diagnosing runaway CPU in a .Net production application
Nov
11
answered VBscript and ADO - 3704 Operation is not allowed when the object is closed.
Nov
11
awarded  Autobiographer
Nov
10
accepted Response.Redirect causes IsPostBack to be true
Nov
5
answered ASP.NET MVC POST Parameters in the url
Nov
5
accepted Converting/Searching GETUTCDATE()
Nov
5
comment window.location.href opens another window
Thanks for the suggestion, but this replaces the current page with the new one, including in history. Not exactly what I want.
Nov
5
answered Converting/Searching GETUTCDATE()
Nov
5
asked window.location.href opens another window
Oct
28
asked WebClient UploadFile errors
Oct
15
accepted Getting 0x80070002 error intermittently when trying to instantiate a COM object in classic ASP
Oct
15
answered Getting 0x80070002 error intermittently when trying to instantiate a COM object in classic ASP
Oct
5
awarded  Notable Question
Oct
4
accepted IDataErrorInfo with complex types
Sep
23
comment What does “Allow Remote Clients” and “Allow Remote Administration” mean in MSDTC?
This has been driving me crazy. I guess I've been spoiled by Google and never thought to look on my computer :). Of course, I still am not sure what this means when using TransactionScope, but at least I have something more to go on. Thanks!