User Brian - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T09:30:25Zhttp://stackoverflow.com/feeds/user/320http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/977159/linq-to-sql-and-null-strings-how-do-i-use-contains/1814670#18146700Answer by Brian for LINQ to SQL and Null strings, how do I use Contains?Brian2009-11-29T04:37:17Z2009-11-29T04:37:17Z<p>You might want to check to make sure the variables street and streetAdditional are not null. I just ran across the same problem and setting them to an empty string seemed to solve my problem.</p>
<pre><code>street = street ?? "";
streetAdditional = streetAdditional ?? "";
from a in this._addresses
where a.Street.Contains(street) || a.StreetAdditional.Contains(streetAdditional)
select a).ToList<Address>()
</code></pre>
http://stackoverflow.com/questions/1800153/single-vs-multiple-linq2sql-repositories/1800180#18001801Answer by Brian for Single vs. multiple Linq2sql repositoriesBrian2009-11-25T21:44:38Z2009-11-26T01:34:55Z<p>Linq2Sql uses lazy loading to get additional information. I believe it can be configured to fetch all at once, but that is not the default behavior. If you ask for a user, you will not get events unless you specifically ask for them.</p>
http://stackoverflow.com/questions/1800747/data-structure-problem-dont-want-to-store-a-list-as-text/1800770#18007701Answer by Brian for Data Structure problem, don't want to store a list as textBrian2009-11-25T23:55:46Z2009-11-25T23:55:46Z<p>What about a Package table and a PackageProduct table?</p>
<pre><code>CREATE TABLE Product (
product_id integer PRIMARY KEY,
product_name text,
price numeric);
CREATE TABLE Package (
package_id integer PRIMARY KEY,
package_name text
price numeric);
CREATE TABLE PackageProduct (
product_id integer,
package_id integer);
</code></pre>
<p>Then just add your packages to the package table and add a row for each product in a package to the PackageProduct table.</p>
http://stackoverflow.com/questions/1791835/faster-to-generate-thumbnail-and-write-to-response-in-handler-or-generate-in-http/1792347#17923470Answer by Brian for Faster to generate thumbnail and write to response in Handler or generate in Http module and let IIS handler the rest??Brian2009-11-24T19:23:58Z2009-11-24T19:23:58Z<p>If you are interested in how to return an image from MVC and some perf tests I ran against it, I have an <a href="http://stackoverflow.com/questions/186062/can-an-asp-net-mvc-controller-return-an-image/1349318#1349318">answer</a> to a question on returning images from MVC. I did not test HTTP modules.</p>
<p>My results were:</p>
<ul>
<li><strong>MVC:</strong> 7.6 milliseconds per photo </li>
<li><strong>Static:</strong> 6.7 milliseconds per photo</li>
</ul>
http://stackoverflow.com/questions/1792191/will-closing-a-filestream-close-the-streamreader/1792204#17922043Answer by Brian for Will closing a FileStream close the StreamReader?Brian2009-11-24T19:02:00Z2009-11-24T19:15:04Z<p>Essentially yes. You don't actually have to close a StreamReader. If you do, all it does is closes the underlying stream.</p>
<p>@Bruno makes a good point about closing the outer-most wrapper. It is good practice to close the outer-most stream and let it close underlying streams in order to ensure all resources are released properly.</p>
<p>From Reflector...</p>
<pre><code>public class StreamReader : TextReader
{
public override void Close()
{
this.Dispose(true);
}
protected override void Dispose(bool disposing)
{
try
{
if ((this.Closable && disposing) && (this.stream != null))
{
this.stream.Close();
}
}
finally
{
if (this.Closable && (this.stream != null))
{
this.stream = null;
this.encoding = null;
this.decoder = null;
this.byteBuffer = null;
this.charBuffer = null;
this.charPos = 0;
this.charLen = 0;
base.Dispose(disposing);
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1314030/deploying-nlog-with-a-clickonce-application0Deploying NLog with a ClickOnce applicationBrian2009-08-21T20:20:55Z2009-11-24T14:51:42Z
<p>Users are not able to install a ClickOnce application. The error is: "File NLog.dll is not a valid Portable Executable (PE) file." It works fine on my machine, but I have nLog installed. That's not possible for client machines. Any ideas how to get this to work? </p>
http://stackoverflow.com/questions/1779700/saving-datetime-object-on-uk-dev-server-vs-us-live-server/1779757#17797571Answer by Brian for Saving DateTime object on UK Dev Server vs US Live ServerBrian2009-11-22T19:48:52Z2009-11-23T08:23:43Z<p>Have you tried this? If this site is only used in the UK, you can probably put this in the Global.asax Application_Init. If it is based on the user, you can put it in Application_BeginRequest. This will provide the default formatting and parsing for all dates and numbers in the application.</p>
<pre><code>Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo("en-gb");
Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("en-gb");
</code></pre>
http://stackoverflow.com/questions/1779679/how-can-i-make-this-repeated-code-more-elegant/1779723#17797230Answer by Brian for How can I make this repeated code more elegant?Brian2009-11-22T19:39:49Z2009-11-22T19:39:49Z<p>Put it in a function with a factory method to instantiate the id object. Something like this...</p>
<pre><code>public delegate T CreateObjectDelegate<T>(string name);
public static void ProcessDataTable<T>(DataTable dt, Dictionary<int, T> dictionary, CreateObjectDelegate<T> createObj)
{
for (int i = 0; i < dt.Rows.Count; i++)
{
DataRow dr = dt.Rows[i];
int id = Convert.ToInt32(dr["id"]);
string name = dr["name"].ToString();
dictionary[id] = createObj(name);
}
}
static void Main(string[] args)
{
var dt = new DataTable();
var dictionary = new Dictionary<int, BugTracker>();
ProcessDataTable<BugTracker>(dt, dictionary, (name) => { return new BugTracker() { Name = name }; });
}
</code></pre>
http://stackoverflow.com/questions/1776022/fastest-way-to-list-all-files-dirs-in-net/1776495#17764950Answer by Brian for Fastest way to list all files + dirs in .NETBrian2009-11-21T19:34:34Z2009-11-21T19:34:34Z<p>What about this. It uses the ThreadPool and recursion. Sending the output directly to a database took way too long, but I think once you get it into a file, you can figure out an efficient way to get it to a database if you want.</p>
<p>Output...</p>
<pre><code>56337/379104 - (number directories/files)
Elapsed seconds: 13.0
</code></pre>
<p>Code...</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Data.SqlClient;
using System.IO;
namespace FileCacher
{
class Program
{
public static void Main()
{
try
{
CacheFiles();
}
finally
{
Console.WriteLine();
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
private static List<string> sFiles = new List<string>();
private static void AddFiles(params string[] files)
{
lock (sFiles)
{
sFiles.AddRange(files);
}
}
private static List<string> sDirectories = new List<string>();
private static void AddDirectories(params string[] dirs)
{
lock (sDirectories)
{
sDirectories.AddRange(dirs);
}
}
private static void CacheFiles()
{
AddDirectories(@"C:\");
CacheDirectory(@"C:\");
var numFiles = 0;
var numDirs = 0;
while (true)
{
Thread.Sleep(1000);
var newNumDirs = sDirectories.Count;
var newNumFiles = sFiles.Count;
if (newNumDirs == numDirs && newNumFiles == numFiles)
{
Console.WriteLine();
break;
}
numDirs = newNumDirs;
numFiles = newNumFiles;
Console.CursorLeft = 0;
Console.Write(string.Format("{0}/{1}", numDirs, numFiles));
}
using (var fs = new FileStream(@"C:\garb\Dirs.txt", FileMode.Create, FileAccess.Write))
{
var sw = new StreamWriter(fs);
sDirectories.Sort();
foreach (var dir in sDirectories)
sw.WriteLine(dir);
}
using (var fs = new FileStream(@"C:\garb\Files.txt", FileMode.Create, FileAccess.Write))
{
var sw = new StreamWriter(fs);
sFiles.Sort();
foreach (var file in sFiles)
sw.WriteLine(file);
}
}
private static void CacheDirectory(object dir)
{
try
{
var dirPath = (string)dir;
var dirs = Directory.GetDirectories(dirPath);
AddDirectories(dirs);
AddFiles(Directory.GetFiles(dirPath));
foreach (var childDir in dirs)
ThreadPool.QueueUserWorkItem(new WaitCallback(CacheDirectory), childDir);
}
catch (UnauthorizedAccessException)
{
//ignore
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1634470/webclient-uploadfile-errors1WebClient UploadFile errorsBrian2009-10-28T00:17:05Z2009-11-21T08:17:44Z
<p>I am trying to upload files to a web server using System.Net.WebClient.UploadFile but I keep getting a WebException. Specifically, I am getting 3 errors. I have no idea why I am not getting the same error, but they all seem to be related based on what I found online.</p>
<ul>
<li>The request was aborted: The request was canceled.</li>
<li>Connection closed. Try again.</li>
<li>An existing connection was forcibly closed by the remote host.</li>
</ul>
<p>It seems somewhat random (not always the same file, amount of time, or any other pattern that I can figure out). Also This doesn't happen on my work network (the uploads take less than 2 seconds), but does happen from home over a DSL (the uploads take about 2 minutes). </p>
<p>From what I have found online, these errors have something to do with keep-alives. Unfortunately WebClient doesn't provide any way to turn these off (I'm not sure if I would want to anyway since this is a performance feature). </p>
<p>I think it might have something to do with timeouts, but I can't figure out why. The server is ASP.Net MVC and the timeout is set to an hour. </p>
<pre><code> <httpRuntime
maxRequestLength="10024"
executionTimeout="3600"
/><!-- 10024 = 10MB, 3600 = 1hr -->
</code></pre>
<p>I'm interested in both ways to fix this problem so it doesn't happen and also recovery techniques (simply making the request again doesn't seem to be effective).</p>
<p>Some background, this is for a WinForms application that uploads photos to the server. The server is an ASP.Net MVC application. The client has worked correctly for a long time but is now failing since I switched it to ASP.Net MVC (it was using classic ASP with SA FileUp). The client side only changed to accomodate the new URLs, other than that it is pretty much the same.</p>
http://stackoverflow.com/questions/1634470/webclient-uploadfile-errors/1726749#17267490Answer by Brian for WebClient UploadFile errorsBrian2009-11-13T02:24:44Z2009-11-21T08:17:44Z<p>The exception "The request was aborted: The request was canceled." is thrown if the WebClient times out during a file transfer. If no file transfer is taking place, you will get "The operation has timed out" instead. </p>
<p>The timeout is occurring on the client. WebClient does not allow you to set the timeout and the default for HttpWebRequest (what WebClient uses) is 100 seconds. I guess I will have to figure out how to get the progress when using HttpWebRequest. I will also have to figure out why ASP.Net file transfer is slower than using SAFileUp with classic ASP.</p>
<p>UPDATE: I've created a WebHelper class that takes the place of WebClient but provides more access to the necessary features of the underlying WebRequest. It also provides a bunch of additional capabilities over the WebClient. If you are interested, you can read more on my blog, <a href="http://www.redwerb.com/post/BizArk-Feature-Spotlight-WebHelper.aspx" rel="nofollow">http://www.redwerb.com/post/BizArk-Feature-Spotlight-WebHelper.aspx</a>.</p>
http://stackoverflow.com/questions/9033/hidden-features-of-c/1774916#17749161Answer by Brian for Hidden Features of C#?Brian2009-11-21T08:12:56Z2009-11-21T08:12:56Z<p>I like the <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.editorbrowsableattribute.aspx" rel="nofollow">EditorBrowsableAttribute</a>. It lets you control whether a method/property is displayed or not in Intellisense. You can set the values to Always, Advanced, or Never.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.editorbrowsableattribute.aspx" rel="nofollow">From MSDN</a>...</p>
<p><strong>Remarks</strong></p>
<p>EditorBrowsableAttribute is a hint to a designer indicating whether a property or method is to be displayed. You can use this type in a visual designer or text editor to determine what is visible to the user. For example, the IntelliSense engine in Visual Studio uses this attribute to determine whether to show a property or method.</p>
<p>In Visual C#, you can control when advanced properties appear in IntelliSense and the Properties Window with the Hide Advanced Members setting under Tools | Options | Text Editor | C#. The corresponding EditorBrowsableState is Advanced.</p>
http://stackoverflow.com/questions/1774884/c-imagebutton-picture-resolution/1774901#17749012Answer by Brian for C# ImageButton Picture ResolutionBrian2009-11-21T08:05:36Z2009-11-21T08:05:36Z<p>This function will proportionally resize a Size structure. Just provide it the maximum height/width and it will return a size that fits within that rectangle.</p>
<pre><code>/// <summary>
/// Proportionally resizes a Size structure.
/// </summary>
/// <param name="sz"></param>
/// <param name="maxWidth"></param>
/// <param name="maxHeight"></param>
/// <returns></returns>
public static Size Resize(Size sz, int maxWidth, int maxHeight)
{
int height = sz.Height;
int width = sz.Width;
double actualRatio = (double)width / (double)height;
double maxRatio = (double)maxWidth / (double)maxHeight;
double resizeRatio;
if (actualRatio > maxRatio)
// width is the determinate side.
resizeRatio = (double)maxWidth / (double)width;
else
// height is the determinate side.
resizeRatio = (double)maxHeight / (double)height;
width = (int)(width * resizeRatio);
height = (int)(height * resizeRatio);
return new Size(width, height);
}
</code></pre>
http://stackoverflow.com/questions/1730290/how-to-avoid-view-specific-code-in-my-viewmodel/1730552#17305520Answer by Brian for How to avoid View specific code in my ViewModelBrian2009-11-13T16:58:53Z2009-11-13T16:58:53Z<p>In scenarios like this, I typically use events. The model can raise an event to ask for information and anybody can respond to it. The view would listen for the event and display the dialog.</p>
<pre><code>public class MyModel
{
public void DoSomething()
{
var e = new SomeQuestionEventArgs();
OnSomeQuestion(e);
if (e.Handled)
mTheAnswer = e.TheAnswer;
}
private string mTheAnswer;
public string TheAnswer
{
get { return mTheAnswer; }
}
public delegate void SomeQuestionHandler(object sender, SomeQuestionEventArgs e);
public event SomeQuestionHandler SomeQuestion;
protected virtual void OnSomeQuestion(SomeQuestionEventArgs e)
{
if (SomeQuestion == null) return;
SomeQuestion(this, e);
}
}
public class SomeQuestionEventArgs
: EventArgs
{
private bool mHandled = false;
public bool Handled
{
get { return mHandled; }
set { mHandled = value; }
}
private string mTheAnswer;
public string TheAnswer
{
get { return mTheAnswer; }
set { mTheAnswer = value; }
}
}
public class MyView
{
private MyModel mModel;
public MyModel Model
{
get { return mModel; }
set
{
if (mModel != null)
mModel.SomeQuestion -= new MyModel.SomeQuestionHandler(mModel_SomeQuestion);
mModel = value;
if (mModel != null)
mModel.SomeQuestion += new MyModel.SomeQuestionHandler(mModel_SomeQuestion);
}
}
void mModel_SomeQuestion(object sender, SomeQuestionEventArgs e)
{
var dlg = new MyDlg();
if (dlg.ShowDialog() != DialogResult.OK) return;
e.Handled = true;
e.TheAnswer = dlg.TheAnswer;
}
}
</code></pre>
http://stackoverflow.com/questions/1724101/migrate-monolithic-classic-asp-to-asp-net/1726912#17269120Answer by Brian for Migrate (monolithic) Classic ASP to ASP.NetBrian2009-11-13T03:16:46Z2009-11-13T03:16:46Z<p>If you are looking for a way to justify the project to management, it will become increasingly more difficult to find classic ASP developers to continue maintaining the application. Any developer that has a choice would probably not choose to maintain an application built using VBScript. Developers that do take the job might consider it temporary and continue to look for other work.</p>
<p>Although I haven't heard anything from Microsoft, it can't be too many years before they decide to retire classic ASP entirely.</p>
http://stackoverflow.com/questions/1712167/asp-net-mvc-localization-route/1712320#17123200Answer by Brian for ASP.NET MVC - Localization routeBrian2009-11-11T00:56:42Z2009-11-12T16:49:59Z<p>You can create a route that has the culture built into it like this...</p>
<pre><code>public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{culture}/{controller}/{action}/{id}", // URL with parameters
new { culture="en-US", controller = "Home", action = "Index", id = "" } // Parameter defaults
);
}
</code></pre>
<p>You can get the culture by adding a culture parameter to all your actions like this...</p>
<pre><code>public ActionResult Index(string culture)
{
ViewData["Message"] = "Welcome to ASP.NET MVC! (" + culture + ")";
return View();
}
</code></pre>
<p>You can also probably parse the URL in the Application_BeginRequest method in Global.asax and set the threads culture there (code sample below shows how to set the culture, the parsing I leave to you).</p>
<p>If you do this you will probably not be able to use the RedirectToAction and HTML.ActionLink type of methods since those don't know anything about cultures. Of course you could always write your own. </p>
<p>The downside to using the url to store the culture is that if you miss a link somewhere on your website or the user leaves the website and then comes back, you could lose the users culture and they will have to set it again (not the end of the world, but annoying. Possibly a good side of using the url to store the culture is that Google will index all the different languages.</p>
<p>If you are more concerned about user experience or ease of development over Google indexing different cultures (really depends on what kind of site you are building), I would suggest storing the culture in a cookie or session state.</p>
<p>Check out <a href="http://stackoverflow.com/questions/192465/how-to-localize-asp-net-mvc-application">How to localize ASP .Net MVC application?</a>. The accepted answer points to a <a href="http://blog.eworldui.net/post/2008/05/ASPNET-MVC---Localization.aspx" rel="nofollow">blog post</a> that shows how you can localize an ASP.Net application. </p>
<p>If you store the culture the user selects in a cookie, session state, or query parameter and then set the threads culture in the BeginRequest method in the Global.asax file. Then localization is done using the standard Microsoft localization assemblies.</p>
<p>The following code will allow you to change the culture at any time by simply adding culture=?? to the query string (MyPage?culture=es-MX). It will then be added to a cookie so that you don't need to add it to the end of every link in your system.</p>
<pre><code>protected void Application_BeginRequest()
{
var culture = Request["culture"];
if (culture == null) culture = "en-US";
var ci = CultureInfo.GetCultureInfo(culture);
Thread.CurrentThread.CurrentCulture = ci;
Thread.CurrentThread.CurrentUICulture = ci;
var cookie = new HttpCookie("culture", ci.Name);
Response.Cookies.Add(cookie);
}
</code></pre>
http://stackoverflow.com/questions/1712402/asp-net-page-change-causes-an-object-array-in-session-to-be-unable-to-cast-to-it/1712483#17124831Answer by Brian for ASP.NET page change causes an object array in Session to be unable to cast to it's own type??Brian2009-11-11T01:44:32Z2009-11-11T01:44:32Z<p>I have seen this message a number of times myself, it is very annoying! As you pointed out, it probably because the assembly version changed. In Asp.Net, when the page changes, the code gets recompiled. Depending on where you put the class will determine if the class gets recompiled with the page or not. I would suggest moving any "model" type classes to a separate project. This will avoid this problem as well as the urge to mix view/controller and model code :). </p>
<p>You can also try serializing the object into session as XML. If you do, you should be able to deserialize it even if the assembly changes, though not if the properties on the object change.</p>
<p>I know you said you didn't want to hear this, but you might also consider not putting objects in the session. This makes it difficult to scale your application if the time ever comes that it is necessary. The sooner you fix this the easier it will be to fix.</p>
http://stackoverflow.com/questions/1712423/almost-newbie-sql-question/1712449#17124493Answer by Brian for almost newbie sql questionBrian2009-11-11T01:34:51Z2009-11-11T01:34:51Z<p>Sql Server understands Ansi Sql. However there are always different interpretations of the standards. Here is an article that I found that lists some of the differences: <a href="http://www.devx.com/dbzone/Article/32852" rel="nofollow">Think ANSI Standard SQL Is Fully Portable Between Databases? Think Again.</a></p>
http://stackoverflow.com/questions/1712180/facebook-connect-fbml-not-rendering-html/1712203#17122030Answer by Brian for Facebook Connect FBML not rendering HTML? Brian2009-11-11T00:24:38Z2009-11-11T00:24:38Z<p>I haven't done any work on Facebook so I don't have a direct answer for you, sorry. However, have you tried starting with a "Hello World" app? Basically remove everything that is not absolutely necessary for Facebook and try to display the text "Hello World" to the screen. Remove the script, the header, fb button, etc.</p>
<p>If you are able to get "Hello World" working, then just add small pieces of the application back in until it breaks. Then you will know exactly what it is that is breaking the output.</p>
<p>If you are not able to get "Hello World" to work, then you are missing a basic requirement. Perhaps somebody else will know what that is.</p>
http://stackoverflow.com/questions/1712082/diagnosing-runaway-cpu-in-a-net-production-application/1712181#17121811Answer by Brian for Diagnosing runaway CPU in a .Net production applicationBrian2009-11-11T00:17:07Z2009-11-11T00:17:07Z<p>I've had luck with the <a href="http://www.red-gate.com/products/ants%5Fperformance%5Fprofiler/index.htm?gclid=CJis09zUgZ4CFSZdagodFmyWpw" rel="nofollow">Red Gate Ants profiler</a>. However it does require installation. I'm pretty sure they don't have a remote option.</p>
http://stackoverflow.com/questions/1712094/vbscript-and-ado-3704-operation-is-not-allowed-when-the-object-is-closed/1712155#17121550Answer by Brian for VBscript and ADO - 3704 Operation is not allowed when the object is closed.Brian2009-11-11T00:09:25Z2009-11-11T00:09:25Z<p>I do the same thing (very similar anyway). I believe that there are two sets of results coming back, one for the INSERT and then another for the SELECT. Try calling objRecordSet.NextRecordset(). </p>
http://stackoverflow.com/questions/1463476/what-does-allow-remote-clients-and-allow-remote-administration-mean-in-msdtc0What does "Allow Remote Clients" and "Allow Remote Administration" mean in MSDTC?Brian2009-09-23T01:15:22Z2009-11-10T13:45:56Z
<p>I am trying to configure MSDTC for some production machines and am having some difficulty learning what all the settings mean, in particular, "Allow Remote Clients" and "Allow Remote Administration" under "Client and Administration." </p>
<p>After hours of searching, this is what I found: </p>
<ul>
<li><a href="http://support.microsoft.com/kb/899191" rel="nofollow">New Functionality in [DTC]...</a> - Documents all the settings for the MSDTC Security Configuration dialog except for these settings. </li>
<li><a href="http://msdn.microsoft.com/en-us/library/aa561924%28BTS.10%29.aspx" rel="nofollow">Troubleshooting Problems with MSDTC</a> - Provides the default and "recommended" settings, but doesn't explain what they mean.</li>
</ul>
<p>Any help with these settings would be appreciated. If possible, I would love to have the Microsoft link to the documentation for these settings.</p>
http://stackoverflow.com/questions/217067/response-redirect-causes-ispostback-to-be-true1Response.Redirect causes IsPostBack to be trueBrian2008-10-19T22:29:25Z2009-11-10T09:46:49Z
<p>I have a button on an ASP.Net page that will call Response.Redirect back to the same page after performing some processing in order to re-display the results of a query. However, for some reason, the page comes up blank. It seems that IsPostBack is returning true after the redirect. Anybody know why this would happen?</p>
<p>The page is a custom page in Community Server. Here is the basic code:</p>
<pre><code>void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
string connStr = ConfigurationManager.ConnectionStrings["SiteSqlServer"].ConnectionString;
SqlDataAdapter da = new SqlDataAdapter("SELECT * FROM ge_vw_NonResidents", connStr);
DataTable tbl = new DataTable();
da.Fill(tbl);
da.Dispose();
rptNonResidents.DataSource = tbl;
rptNonResidents.DataBind();
}
}
void btnApprove_Command(object sender, CommandEventArgs e)
{
// Code removed for testing.
Response.Clear();
Response.Redirect("ApproveResidents.aspx", true);
Response.End();
}
</code></pre>
http://stackoverflow.com/questions/1682198/asp-net-mvc-post-parameters-in-the-url/1682490#16824900Answer by Brian for ASP.NET MVC POST Parameters in the urlBrian2009-11-05T18:12:53Z2009-11-05T18:12:53Z<p>I believe that MVC uses Convert.ChangeType for conversions. This method does not support Guids. My recommendation would be to change the parameter to a string and convert it in the method.</p>
http://stackoverflow.com/questions/1678139/converting-searching-getutcdate/1678288#16782881Answer by Brian for Converting/Searching GETUTCDATE() Brian2009-11-05T04:09:41Z2009-11-05T04:09:41Z<p>Dealing with time zones is a major pain in the @$$. One thing to consider is that Windows only stores the current DST rules, not historic rules. So if you are relying on the rules to be able to accurately recreate the old values, you might find some discrepancies in your data. DST rules change all the time. Some countries don't even have set rules, they just announce the dates every year.</p>
<p>If you cannot afford discrepancies in your data, you might be better off storing the date as a string with the time zone information encoded in it. In .Net you can use DateTime.ToString("O"). This format is culture agnostic so you will always get the same format no matter what culture the code is running in.</p>
<pre><code>var origDt = DateTime.Now;
var dtStr = origDt.ToString("O");
var newDt = DateTime.Parse(dtStr, null, System.Globalization.DateTimeStyles.RoundtripKind);
Console.WriteLine(dtStr);
if (newDt == origDt)
Console.WriteLine("Dates equal"); // should be true
else
Console.WriteLine("Dates not equal");
</code></pre>
<p>Check out the <a href="http://msdn.microsoft.com/en-us/library/az4se3k1.aspx#Roundtrip" rel="nofollow">MSDN documentation</a> for more information on this format style.</p>
<p>Of course this comes at a cost. It will be inefficient to search the database by date (it can be done, but the strings need to be converted to dates). Chances are the time zone differences won't matter too much anyway. It really depends on what you are doing with the data and how important accuracy is.</p>
<p>You might want to make sure that the project actually requires UTC and time zones before you go down this path. There is a decent chance that just storing the time from the local computer and ignoring time zones is good enough. </p>
http://stackoverflow.com/questions/1678155/window-location-href-opens-another-window0window.location.href opens another windowBrian2009-11-05T03:29:29Z2009-11-05T03:47:16Z
<p>For some reason when I set window.location.href = it opens another window.</p>
<p>window.location.href = '<a href="https://MyDomain.com/Checkout/Purchase.asp" rel="nofollow">https://MyDomain.com/Checkout/Purchase.asp</a>';</p>
<p>It doesn't happen in my development environment, only production. The only only thing different that I can think of is that we are switching from http to https. If this were a straight link () it would work.</p>
<p>Any ideas how to get this to work correctly? The url is built with Javascript (it requires some information from the user).</p>
http://stackoverflow.com/questions/1401542/getting-0x80070002-error-intermittently-when-trying-to-instantiate-a-com-object-i0Getting 0x80070002 error intermittently when trying to instantiate a COM object in classic ASPBrian2009-09-09T19:18:31Z2009-10-15T23:01:39Z
<p>We have a classic ASP page that is instantiating a .Net object through a COM interface. It was working fine for a long time, but over the weekend we applied some Windows updates and it is no longer working reliably in our production environment. Sometimes it works, sometimes it doesn't and it seems random when it works. It doesn't fail in a test environment or even on the production servers when we take them out of the cluster (seems to only fail under load).</p>
<p>The error is "-2147024894 - File or assembly name FusionEngine, or one of its dependencies, was not found." The number converted to hex is 80070002.</p>
<p>We created a test page that is pretty basic. It basically just instantiates the object and calls a simple property on it to display.</p>
<pre><code><%
On Error Resume Next
set oFusion = Server.CreateObject("Fusion.Engine")
%>
Error: <%=err.Number%> - <%=err.Description%><br>
[<%=oFusion.DPI%>]<br>
</code></pre>
<p>We tried recreating the object if an error was detected (10 times with a 1 second interval) but if it doesn't work once, it doesn't work 10 times either.</p>
<p>The fusion object is very simple. It only references System.dll and System.Drawing.dll (it generates images).</p>
http://stackoverflow.com/questions/1401542/getting-0x80070002-error-intermittently-when-trying-to-instantiate-a-com-object-i/1575597#15755970Answer by Brian for Getting 0x80070002 error intermittently when trying to instantiate a COM object in classic ASPBrian2009-10-15T23:01:39Z2009-10-15T23:01:39Z<p>The problem turned out to be that we were running two different versions of .Net (1.1 and 2.0). We were able to get it to work by making sure that they were running under different application pools.</p>
http://stackoverflow.com/questions/1440766/idataerrorinfo-with-complex-types/1463522#14635222Answer by Brian for IDataErrorInfo with complex typesBrian2009-09-23T01:29:45Z2009-09-23T01:29:45Z<p>You need to define IErrorInfo on all the classes that you want to supply error messages for.</p>
http://stackoverflow.com/questions/1406554/why-use-flagsbitmasks-rather-than-a-series-of-booleans/1406599#14065991Answer by Brian for Why use flags+bitmasks rather than a series of booleans?Brian2009-09-10T17:23:56Z2009-09-11T00:52:10Z<p>I would suggest never using enum flags unless you are dealing with some pretty serious memory limitations (not likely). You should always write code optimized for maintenance. </p>
<p>Having several boolean properties makes it easier to read and understand the code, change the values, and provide Intellisense comments not to mention reduce the likelihood of bugs. If necessary, you can always use an enum flag field internally, just make sure you expose the setting/getting of the values with boolean properties.</p>
http://stackoverflow.com/questions/1792191/will-closing-a-filestream-close-the-streamreader/1792204#1792204Comment by Brian on Will closing a FileStream close the StreamReader?Brian2009-11-24T19:31:37Z2009-11-24T19:31:37Z@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.http://stackoverflow.com/questions/1314030/deploying-nlog-with-a-clickonce-application/1790571#1790571Comment by Brian on Deploying NLog with a ClickOnce applicationBrian2009-11-24T18:59:04Z2009-11-24T18:59:04ZI never found one. I ended up removing NLog and writing my own logger (obviously much simplified) :(http://stackoverflow.com/questions/1712167/asp-net-mvc-localization-route/1712320#1712320Comment by Brian on ASP.NET MVC - Localization routeBrian2009-11-13T16:45:43Z2009-11-13T16:45:43ZYou 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.http://stackoverflow.com/questions/1712167/asp-net-mvc-localization-route/1712320#1712320Comment by Brian on ASP.NET MVC - Localization routeBrian2009-11-12T16:50:50Z2009-11-12T16:50:50ZI updated my answer with information about how to modify the route to allow for culture in the url.http://stackoverflow.com/questions/1712167/asp-net-mvc-localization-route/1712320#1712320Comment by Brian on ASP.NET MVC - Localization routeBrian2009-11-11T22:45:18Z2009-11-11T22:45:18ZI 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.http://stackoverflow.com/questions/1678155/window-location-href-opens-another-window/1678179#1678179Comment by Brian on window.location.href opens another windowBrian2009-11-05T17:03:40Z2009-11-05T17:03:40ZThanks for the suggestion, but this replaces the current page with the new one, including in history. Not exactly what I want.http://stackoverflow.com/questions/1463476/what-does-allow-remote-clients-and-allow-remote-administration-mean-in-msdtc/1463584#1463584Comment by Brian on What does "Allow Remote Clients" and "Allow Remote Administration" mean in MSDTC?Brian2009-09-23T02:08:09Z2009-09-23T02:08:09ZThis 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!http://stackoverflow.com/questions/1463389/is-it-possible-to-debug-2-clients-of-a-remote-remoting-server-on-the-same-pcComment by Brian on is it possible to debug 2 clients of a remote (remoting) server on the same pc?Brian2009-09-23T01:22:16Z2009-09-23T01:22:16ZAre you trying to debug the client, the server, or both?http://stackoverflow.com/questions/78181/how-do-you-get-a-string-from-a-memorystream/78190#78190Comment by Brian on How do you get a string from a MemoryStream?Brian2009-09-02T18:35:19Z2009-09-02T18:35:19ZYou are correct. It is typically a bad idea to use the Dispose method on the stream helper classes, especially if the stream is passed into a method as a parameter. I'll update this answer. I also have a more complete answer below.http://stackoverflow.com/questions/186062/can-an-asp-net-mvc-controller-return-an-image/186197#186197Comment by Brian on Can an ASP.Net MVC controller return an Image?Brian2009-08-28T20:49:38Z2009-08-28T20:49:38ZThis will not compile. See my answer for more info...
http://stackoverflow.com/questions/1330072/clickonce-not-launching/1330086#1330086Comment by Brian on ClickOnce not launchingBrian2009-08-25T23:27:10Z2009-08-25T23:27:10ZIt is deployed over the Internet and it wouldn't be possible to run it from a network share. I did add our domain to the list of safe sites and that still didn't help. As a note, I also was not able to get the Google Chrome ClickOnce installer to run on his machine.http://stackoverflow.com/questions/1330072/clickonce-not-launching/1330089#1330089Comment by Brian on ClickOnce not launchingBrian2009-08-25T20:00:56Z2009-08-25T20:00:56ZChrome doesn't install either. It seems to be a permission issue, but I'm not sure what the permission is that is missing.http://stackoverflow.com/questions/1330072/clickonce-not-launching/1330113#1330113Comment by Brian on ClickOnce not launchingBrian2009-08-25T20:00:16Z2009-08-25T20:00:16ZNope, that didn't work. Thanks for the idea.http://stackoverflow.com/questions/1330072/clickonce-not-launching/1330086#1330086Comment by Brian on ClickOnce not launchingBrian2009-08-25T19:52:59Z2009-08-25T19:52:59ZIt does seem to be a permissions issue. I ran IE as admin and it worked. This isn't happening for anybody else that I'm aware of. What permissions should I look at?http://stackoverflow.com/questions/1289509/asp-net-page-accessing-wrong-registry/1289534#1289534Comment by Brian on ASP.Net page accessing wrong registry???Brian2009-08-17T19:55:35Z2009-08-17T19:55:35ZThat was it. Thanks a lot. Crazy 32bit process on 64bit OS issues :)