User labilbe - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T03:48:09Z http://stackoverflow.com/feeds/user/3199 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/355842/asp-net-mvc-handleerror-throwing-500-internal-server-error/1236497#1236497 0 Answer by labilbe for ASP.Net MVC HandleError throwing 500 Internal Server Error labilbe 2009-08-06T01:04:04Z 2009-08-06T01:04:04Z <p>Otherwise you can use the Web.Config configuration and set it to the expected controller's actions. Like this:</p> <pre><code> &lt;customErrors mode="On" defaultRedirect="/Error"&gt; &lt;error statusCode="404" redirect="/Error/NotFound"/&gt; &lt;/customErrors&gt; </code></pre> <p>Then imagine you have an Error controlller (/Error) which points out to an index action</p> <pre><code>public class ErrorController : Controller { [AcceptVerbs(HttpVerbs.Get)] public ActionResult Index() { Response.StatusCode = (int)HttpStatusCode.InternalServerError; return View("Index"); } [AcceptVerbs(HttpVerbs.Get)] public ActionResult NotFound() { Response.StatusCode = (int)HttpStatusCode.NotFound; return View("NotFound"); } } </code></pre> http://stackoverflow.com/questions/355842/asp-net-mvc-handleerror-throwing-500-internal-server-error/1230927#1230927 0 Answer by labilbe for ASP.Net MVC HandleError throwing 500 Internal Server Error labilbe 2009-08-05T02:43:19Z 2009-08-05T02:43:19Z <p>What if you try the following?</p> <pre><code>Response.TrySkipIisCustomErrors = true; </code></pre> http://stackoverflow.com/questions/373599/how-to-pass-special-characters-so-asp-net-mvc-can-handle-correctly-query-string-d 3 How to pass special characters so ASP.NET MVC can handle correctly query string data? labilbe 2008-12-17T03:46:44Z 2009-07-11T05:53:42Z <p>Hello,</p> <p>I am using a route like this one:</p> <pre><code> routes.MapRoute("Invoice-New-NewCustomer", "Invoice/New/Customer/New/{*name}", new { controller = "Customer", action = "NewInvoice" }, new { name = @"[^\.]*" }); </code></pre> <p>There is an action which handles this route:</p> <pre><code> public ActionResult NewInvoice(string name) { AddClientSideValidation(); CustomerViewData viewData = GetNewViewData(); viewData.InvoiceId = "0"; viewData.Customer.Name = name; return View("New", viewData); } </code></pre> <p>When I call <code>return RedirectToAction("NewInvoice", "Customer", new {name});</code> and name is equal to "The C# Guy", the "name" parameter is truncated to "The C".</p> <p>So my question is : What is the best way to handle this kind of special character with ASP.NET MVC?</p> <p>Thanks!</p> http://stackoverflow.com/questions/987199/mailto-special-characters/1036066#1036066 0 Answer by labilbe for mailto special characters labilbe 2009-06-24T01:36:42Z 2009-06-24T01:36:42Z <p>I have a problem like this. I fixed the problem with Outlook but now Thunderbird is not displaying it correctly. I hope this is not a flavor of each one :(</p> http://stackoverflow.com/questions/656674/how-efficient-are-iframes/656720#656720 0 Answer by labilbe for How efficient are IFrames? labilbe 2009-03-18T02:00:31Z 2009-03-18T02:00:31Z <p>I find difficult to communicate between iframes (in javascript for instance). I prefer divs instead and you can use a server cache where you need it. Maybe a solution which uses partial rendering with Ajax can be more elegant.</p> http://stackoverflow.com/questions/7867/best-tool-for-performance-testing-asp-net/633223#633223 0 Answer by labilbe for Best tool for performance testing ASP.NET labilbe 2009-03-11T03:24:01Z 2009-03-11T03:24:01Z <p><a href="http://www.jetbrains.com/profiler/" rel="nofollow">dotTrace Profiler</a> from JetBrains is good too.</p> http://stackoverflow.com/questions/253574/how-to-test-custom-model-binders-in-asp-net-mvc/625106#625106 2 Answer by labilbe for How to test custom Model Binders in ASP.NET MVC? labilbe 2009-03-09T05:22:52Z 2009-03-09T05:22:52Z <p>dict could be refactored like this</p> <pre><code> FormCollection form = new FormCollection { { "month1", "2" }, { "day1", "12" }, { "year1", "1964" }, { "hour1", "13" }, { "minute1", "44" }, { "second1", "01" } }; var bindingContext = new ModelBindingContext() { ModelName = "foo", ValueProvider = form.ToValueProvider() }; </code></pre> http://stackoverflow.com/questions/608919/matching-a-regex-in-html-ignoring-spaces-and-quotation-marks/609221#609221 0 Answer by labilbe for Matching a regex in html, ignoring spaces, and quotation marks labilbe 2009-03-04T04:26:37Z 2009-03-04T04:26:37Z <p>I ought you to test <a href="http://www.regexbuddy.com/" rel="nofollow">RegExBuddy</a> (not free but low price) because this tool saved me a lot of time.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/502124#502124 1 Answer by labilbe for What is the best UI you've ever used? labilbe 2009-02-02T03:40:45Z 2009-02-02T03:40:45Z <p>For old school people: PC Tools Deluxe (MS-DOS)</p> <p>I found this UI amazing in a MS-DOS environment.</p> http://stackoverflow.com/questions/384119/net-smtpclient-where-is-pending-outgoing-mail-stored/494496#494496 0 Answer by labilbe for .NET SMTPClient - where is pending outgoing mail stored? labilbe 2009-01-30T04:35:19Z 2009-01-30T04:40:19Z <p>By default the SMTP client uses a network sending. So no emails are stored anywhere.</p> <p>Here is the configuration section of the web.config</p> <pre><code> &lt;mailSettings&gt; &lt;!-- &lt;smtp deliveryMethod = "Network" [Network | SpecifiedPickupDirectory | PickupDirectoryFromIis] from = "" [String] &gt; &lt;network defaultCredentials = "false" [true|false] host = "" [String] password = "" [String] port = "25" [number] userName = "" [String] /&gt; &lt;specifiedPickupDirectory pickupDirectoryLocation = "" [String] /&gt; &lt;/smtp&gt; --&gt; &lt;smtp deliveryMethod="Network"&gt; &lt;network defaultCredentials="false" port="25" /&gt; &lt;/smtp&gt; &lt;/mailSettings&gt; </code></pre> <p>You can take a look to <a href="http://www.codeproject.com/KB/IP/smtpclientext.aspx" rel="nofollow">this article</a> in code project which shows how to handle manually the files created by the SMTP Client when <code>DeliveryMethod == SmtpDeliveryMethod.SpecifiedPickupDirectory</code>.</p> http://stackoverflow.com/questions/494362/highlighting-columns-in-a-table-with-jquery/494439#494439 0 Answer by labilbe for Highlighting columns in a table with jQuery labilbe 2009-01-30T04:00:32Z 2009-01-30T04:00:32Z <p>Did you test the following?</p> <pre><code>$("table.Table22 tr td:nth-child(even):not(:last-child)").css("background","blue") </code></pre> http://stackoverflow.com/questions/494362/highlighting-columns-in-a-table-with-jquery/494387#494387 0 Answer by labilbe for Highlighting columns in a table with jQuery labilbe 2009-01-30T03:30:30Z 2009-01-30T03:30:30Z <p>Why not to use the advantages of html ?</p> <p>Instead of </p> <pre><code>&lt;table&gt; &lt;tr&gt; &lt;td&gt; ... &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>Try</p> <pre><code>&lt;table&gt; &lt;tfoot&gt; &lt;tr&gt; &lt;td&gt; ... &lt;/td&gt; &lt;/tr&gt; &lt;/tfoot&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt; ... &lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; </code></pre> <p>You can use the <code>&lt;thead&gt;</code> tag too to manipulate headers.</p> <p>And now you can call the selector on</p> <pre><code>$("table.Table22 tbody tr td:nth-child(even)").css("background","blue") </code></pre> http://stackoverflow.com/questions/334408/where-to-get-microsoft-web-mvc-dll/494369#494369 0 Answer by labilbe for Where to get Microsoft.Web.Mvc.dll labilbe 2009-01-30T03:21:19Z 2009-01-30T03:21:19Z <p>For ASP.NET MVC RC1 the new address is <a href="http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=22359" rel="nofollow">http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=22359</a></p> http://stackoverflow.com/questions/214583/adding-active-tag-to-navigation-list-in-an-asp-net-mvc-master-page/326234#326234 1 Answer by labilbe for Adding "active" tag to navigation list in an asp.net mvc master page labilbe 2008-11-28T17:08:32Z 2009-01-27T22:53:03Z <p>You can also try to detect which is the current selected tab from its controller name and view name, then add the class attribute.</p> <pre><code> public static string MenuActionLink(this HtmlHelper helper, string linkText, string actionName, string controllerName) { var htmlAttributes = new RouteValueDictionary(); if (helper.ViewContext.Controller.GetType().Name.Equals(controllerName + "Controller", StringComparison.OrdinalIgnoreCase)) { htmlAttributes.Add("class", "current"); } return helper.ActionLink(linkText, actionName, controllerName, new RouteValueDictionary(), htmlAttributes); } </code></pre> http://stackoverflow.com/questions/362961/improving-a-web-login-screen/474596#474596 0 Answer by labilbe for Improving a Web Login Screen labilbe 2009-01-23T21:18:32Z 2009-01-23T21:18:32Z <p>This resource can be useful too. <a href="http://webdesignledger.com/inspiration/interface-design-loginsignup" rel="nofollow">http://webdesignledger.com/inspiration/interface-design-loginsignup</a></p> http://stackoverflow.com/questions/373599/how-to-pass-special-characters-so-asp-net-mvc-can-handle-correctly-query-string-d/374689#374689 0 Answer by labilbe for How to pass special characters so ASP.NET MVC can handle correctly query string data? labilbe 2008-12-17T14:28:00Z 2008-12-17T14:28:00Z <p>If I encode the URL i have the following URL</p> <p><code>http://localhost:1978/Invoice/New/Customer/New/The+C%2523+Guy</code></p> <p>And the web server returns <pre><code>Server Error in '/' Application. HTTP Error 400 - Bad Request. Version Information: ASP.NET Development Server 9.0.0.0 </code></pre></p> http://stackoverflow.com/questions/327604/posting-base64-encoded-files-to-an-asp-net-1-1-page/327693#327693 1 Answer by labilbe for Posting base64 encoded files to an asp.net 1.1 page labilbe 2008-11-29T16:48:51Z 2008-11-29T16:48:51Z <p>Hi,</p> <p>If you plan to use Base64 encoding. Take a look at</p> <pre><code> System.Convert.ToBase64String() System.Convert.FromBase64String() System.Convert.ToBase64CharArray() System.Convert.FromBase64CharArray() </code></pre> http://stackoverflow.com/questions/321550/unit-testing-creating-a-mock-request-to-simulate-a-mvc-page-request/321789#321789 2 Answer by labilbe for Unit Testing: Creating a 'mock' request to simulate a MVC page request labilbe 2008-11-26T19:06:45Z 2008-11-26T19:12:09Z <p>Hi,</p> <p>You just have to create a new instance of FormCollection and add the data inside of it.</p> <p>So you can call something like this without mocking anything.</p> <pre><code>var result = controller.Create(new FormCollection { { "InvoiceId", "-1" } }) as RedirectToRouteResult; </code></pre> <p>Otherwise if your code calls something like Request or HttpContext you can use the following extension method (inspired from the Scott Hanselman's one)</p> <p>I am using RhinoMocks.</p> <pre><code>public static HttpContextBase SetHttpContext(this MockRepository mocks, Controller controller, HttpCookieCollection cookies) { cookies = cookies ?? new HttpCookieCollection(); var request = mocks.StrictMock&lt;HttpRequestBase&gt;(); var context = mocks.StrictMock&lt;HttpContextBase&gt;(); var response = mocks.StrictMock&lt;HttpResponseBase&gt;(); SetupResult.For(context.Request).Return(request); SetupResult.For(context.Response).Return(response); SetupResult.For(request.Cookies).Return(cookies); SetupResult.For(request.IsSecureConnection).Return(false); SetupResult.For(response.Cookies).Return(cookies); if (controller != null) { controller.ControllerContext = new ControllerContext(context, new RouteData(), controller); } if (!string.IsNullOrEmpty(requestUrl)) { request.SetupRequestUrl(requestUrl); SetupResult.For(response.ApplyAppPathModifier(null)).IgnoreArguments().Return(null); } return context; } </code></pre> http://stackoverflow.com/questions/315729/controllers-actions-names-localization 1 Controller's actions names localization labilbe 2008-11-24T22:27:37Z 2008-11-25T00:02:44Z <p>Hello,</p> <p>I am facing a problem. I would like to localize my action names in my project so french people can have clean urls with french names.</p> <p><a href="http://www.test.com/Home" rel="nofollow">http://www.test.com/Home</a> should be <a href="http://www.test.com/Accueil" rel="nofollow">http://www.test.com/Accueil</a></p> <p>It is a good thing too for google indexing. Moreover I would like to be Restful on the application, so I would like too keep english name because developers (even frenchies) prefer to work on english names.</p> <p>I don't know if it's possible and how.</p> <p>My first idea should be something like get the browser language, assign it to the CurrentThread.CurrentCulture, so I can select the view name I want.</p> <p>Thank you very much for your answers.</p> http://stackoverflow.com/questions/313434/problem-setting-path-to-jquery-in-mvc-app/315781#315781 1 Answer by labilbe for Problem setting path to jquery in mvc app labilbe 2008-11-24T22:52:41Z 2008-11-24T22:52:41Z <p>As you are on a master page you can use</p> <pre><code>&lt;script src="&lt;%=ResolveUrl(~/Views/Scripts/jquery-1.2.6.min.js) %&gt;" type="text/javascript"&gt;&lt;/script&gt; </code></pre> <p>ResolveUrl is a method inherited from Control. Thus, the MasterPage which derives from Control can use it.</p> http://stackoverflow.com/questions/147208/hiding-table-rows-without-resizing-overall-width/314418#314418 0 Answer by labilbe for Hiding table rows without resizing overall width... labilbe 2008-11-24T15:10:08Z 2008-11-24T15:10:08Z <p>You can do it using pure HTML</p> <pre><code>&lt;table border="1"&gt; &lt;colgroup&gt; &lt;col width="150px" /&gt; &lt;col width="10px" /&gt; &lt;col width="220px" /&gt; &lt;/colgroup&gt; &lt;tr&gt; &lt;td valign="top"&gt;1&lt;/td&gt; &lt;td&gt; &lt;/td&gt; &lt;td&gt;2&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;3&lt;/td&gt; &lt;td&gt; &lt;/td&gt; &lt;td&gt;4&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> http://stackoverflow.com/questions/314301/html-how-to-pause-refresh-of-page-when-drawing-html-table-dynamically/314400#314400 0 Answer by labilbe for HTML: How to "pause" refresh of page when drawing HTML table dynamically labilbe 2008-11-24T15:05:03Z 2008-11-24T15:05:03Z <p>Did you try the &lt;tbody&gt; tag when you create the table? It is possible browsers optimize that and don't "refresh" the table while populating it.</p> http://stackoverflow.com/questions/313877/can-i-automate-creating-a-net-web-application-in-iis/313914#313914 1 Answer by labilbe for Can I automate creating a .NET web application in IIS? labilbe 2008-11-24T11:26:16Z 2008-11-24T11:32:16Z <p>You can create a virtual directory without using the MMC console using the WebDirectoryCreate task available inside the project <a href="http://msbuildtasks.tigris.org/" rel="nofollow">msbuildtasks</a></p> http://stackoverflow.com/questions/300841/how-do-you-globally-set-the-date-format-in-asp-net/300885#300885 0 Answer by labilbe for How do you globally set the date format in ASP.NET? labilbe 2008-11-19T03:03:21Z 2008-11-19T03:03:21Z <p>You can set your culture without manipulation: <pre><code> using System.Globalization; using System.Threading;</p> <p>//... protected void Application_BeginRequest(Object sender, EventArgs e) {<br /> Thread.CurrentThread.CurrentCulture = new CultureInfo("en-NZ"); Thread.CurrentThread.CurrentUICulture = Thread.CurrentThread.CurrentCulture; } </pre></code></p> http://stackoverflow.com/questions/292127/hosting-a-complex-online-service/292144#292144 0 Answer by labilbe for Hosting a complex online service labilbe 2008-11-15T04:17:28Z 2008-11-15T04:17:28Z <p>Maybe you should get a look to the Windows Azure Platform. At the moment I heard nothing about prices but it can be a good solution if your application needs to scale (in a transparent way).</p> http://stackoverflow.com/questions/115060/mvc-preview-5-rendering-a-view-to-string-for-testing/292135#292135 0 Answer by labilbe for MVC Preview 5 - Rendering A View To String For Testing labilbe 2008-11-15T04:10:45Z 2008-11-15T04:10:45Z <p>Moreover testing, it can be useful for components such as HTML to PDF converters. These components usually uses 2 ways of transformation.</p> <ul> <li>Passing a URL to the conversion method</li> <li>Passing a HTML content (and you can optionally specify the baseUrl to resolve virtual paths)</li> </ul> <p>I am using an Authorize filter inside the controller, so if I redirect to the URL the rendered HTML is the login page one (I use a custom authentication).</p> <p>If I use Server.Execute(Url) to keep the context, the method fails (HttpUnhandledException: Error executing child request for /Template/Pdf/1.).</p> <p>So I tried to retrieve the HTML of the rendered ViewResult but I didn't succeed.</p> http://stackoverflow.com/questions/291844/c-performance-type-comparison-vs-string-comparison/291856#291856 3 Answer by labilbe for c# performance: type comparison vs. string comparison labilbe 2008-11-15T00:22:54Z 2008-11-15T00:22:54Z <p>The first one is used to compare types not values. If you want to compare strings with a non-sensitive case you can use:</p> <pre><code> string toto = "toto"; string tata = "tata"; bool isEqual = string.Compare(toto, tata, StringComparison.InvariantCultureIgnoreCase) == 0; Console.WriteLine(isEqual); </code></pre> http://stackoverflow.com/questions/279953/how-to-send-an-email-with-attachments-using-smtpclient-sendasync 3 How to send an email with attachments using SmtpClient.SendAsync? labilbe 2008-11-11T03:49:50Z 2008-11-15T00:12:23Z <p>Hi,</p> <p>I am using a service component through ASP.NET MVC. I would like to send the email in a asynchronous way to let the user do other stuff without having to wait for the sending.</p> <p>When I send a message without attachments it works fine. When I send a message with at least one in-memory attachment it fails.</p> <p>So, I would like to know if it is possible to use an async method with in-memory attachments.</p> <p>Here is the sending method</p> <pre><code> public static void Send() { MailMessage message = new MailMessage("from@foo.com", "too@foo.com"); using (MemoryStream stream = new MemoryStream(new byte[64000])) { Attachment attachment = new Attachment(stream, "my attachment"); message.Attachments.Add(attachment); message.Body = "This is an async test."; SmtpClient smtp = new SmtpClient("localhost"); smtp.Credentials = new NetworkCredential("foo", "bar"); smtp.SendAsync(message, null); } } </code></pre> <p>Here is my current error</p> <pre><code> System.Net.Mail.SmtpException: Failure sending mail. ---> System.NotSupportedException: Stream does not support reading. at System.Net.Mime.MimeBasePart.EndSend(IAsyncResult asyncResult) at System.Net.Mail.Message.EndSend(IAsyncResult asyncResult) at System.Net.Mail.SmtpClient.SendMessageCallback(IAsyncResult result) --- End of inner exception stack trace --- </code></pre> <p><hr /></p> <p>Solution</p> <pre><code> public static void Send() { MailMessage message = new MailMessage("from@foo.com", "to@foo.com"); MemoryStream stream = new MemoryStream(new byte[64000]); Attachment attachment = new Attachment(stream, "my attachment"); message.Attachments.Add(attachment); message.Body = "This is an async test."; SmtpClient smtp = new SmtpClient("localhost"); //smtp.Credentials = new NetworkCredential("login", "password"); smtp.SendCompleted += delegate(object sender, System.ComponentModel.AsyncCompletedEventArgs e) { if (e.Error != null) { System.Diagnostics.Trace.TraceError(e.Error.ToString()); } MailMessage userMessage = e.UserState as MailMessage; if (userMessage != null) { userMessage.Dispose(); } }; smtp.SendAsync(message, message); } </code></pre> http://stackoverflow.com/questions/205957/how-to-deal-with-an-inept-and-self-centered-programmer/290758#290758 0 Answer by labilbe for How to deal with an inept and self-centered programmer? labilbe 2008-11-14T17:14:21Z 2008-11-15T00:03:18Z <p>I think you have done a lot from your side. Documenting and trying to show your bosses the guy is an "autist" is imho a complete waste of time. Stupid people remain stupid. You seem to be in a spirit where the team goes on. He seems to be in the spirit of "Me and the rest of the company". These kind of guys are terribly annoying and my advice is to find another job or better start your own job so you can have the freedom of doing what you want.</p> <p>I remember Joel Spolsky in an article saying something like "Don't hire an antisocial guy".</p> http://stackoverflow.com/questions/290779/what-is-more-important-testability-of-code-or-adherence-to-oop-principles/290872#290872 1 Answer by labilbe for What is more important, testability of code, or adherence to OOP principles? labilbe 2008-11-14T17:55:52Z 2008-11-14T17:55:52Z <p>Regarding the classes scope, you could use internals to simplify the framework (for the end-users) and specify in the framework project AssemblyInfo.cs</p> <pre><code>[assembly: InternalsVisibleTo("MyAssembly.Tests")]</code></pre> http://stackoverflow.com/questions/987199/mailto-special-characters/1036066#1036066 Comment by labilbe on mailto special characters labilbe 2009-09-28T17:03:56Z 2009-09-28T17:03:56Z Since both email clients have different behaviors, I used a workaround which finds special chars and transform it to a normal one (if possible) http://stackoverflow.com/questions/60113/https-with-visual-studios-built-in-asp-net-develpment-server/60159#60159 Comment by labilbe on HTTPS with Visual Studio's built-in ASP.NET Develpment Server labilbe 2009-07-06T03:17:28Z 2009-07-06T03:17:28Z The link is no more accessible but you can get it through <a href="http://web.archive.org/web/20080123212335/http://www.wilcob.com/Wilco/Toolbox/WebDevWebServer2.aspx" rel="nofollow">web.archive.org/web/20080123212335/&hellip;</a> http://stackoverflow.com/questions/608962/javascript-files-not-mapping-correctly-in-asp-net-mvc/609072#609072 Comment by labilbe on Javascript files not mapping correctly in ASP.NET MVC? labilbe 2009-03-04T04:29:12Z 2009-03-04T04:29:12Z A workaround of Url.Content can be ResolveUrl. But Url.Content is ok. http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/343740#343740 Comment by labilbe on Worst UI You've Ever Used labilbe 2009-02-02T03:33:19Z 2009-02-02T03:33:19Z Happy debugging! http://stackoverflow.com/questions/502067/best-web-ui-youve-ever-used/502078#502078 Comment by labilbe on Best *Web* UI you've ever used labilbe 2009-02-02T03:13:58Z 2009-02-02T03:13:58Z The idea is interesting but the main drawback is that you must aware of your gestures and of the animation moving under your cursor. I don't know how to explain that but I feel like an earthquake under the mouse :) http://stackoverflow.com/questions/494362/highlighting-columns-in-a-table-with-jquery/494439#494439 Comment by labilbe on Highlighting columns in a table with jQuery labilbe 2009-02-02T02:15:46Z 2009-02-02T02:15:46Z I am sorry I have no more clues :( http://stackoverflow.com/questions/494371/visual-web-developer-resize-all-images-together/494384#494384 Comment by labilbe on visual web developer resize "all images" together? labilbe 2009-01-30T03:44:48Z 2009-01-30T03:44:48Z Thank you for sharing the solution :) http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/431284#431284 Comment by labilbe on What was your first computer game that got you interested in computers? labilbe 2009-01-23T21:34:36Z 2009-01-23T21:34:36Z da frenchie game :p http://stackoverflow.com/questions/373599/how-to-pass-special-characters-so-asp-net-mvc-can-handle-correctly-query-string-d/403812#403812 Comment by labilbe on How to pass special characters so ASP.NET MVC can handle correctly query string data? labilbe 2009-01-01T23:49:36Z 2009-01-01T23:49:36Z Thanks Phil for taking the time to investigate this problem http://stackoverflow.com/questions/373599/how-to-pass-special-characters-so-asp-net-mvc-can-handle-correctly-query-string-d/375718#375718 Comment by labilbe on How to pass special characters so ASP.NET MVC can handle correctly query string data? labilbe 2008-12-18T04:00:31Z 2008-12-18T04:00:31Z Is it redirecting to Invoice/New/Customer/New/The+C%2523+Guy or to Customer/NewInvoice?name=The%2BC%2523%2BGuy ? http://stackoverflow.com/questions/300327/how-to-include-multiple-javascript-files-in-net-like-they-do-in-rails/300379#300379 Comment by labilbe on How to Include Multiple Javascript Files in .NET (Like they do in rails) labilbe 2008-11-21T16:22:43Z 2008-11-21T16:22:43Z You must to be sure scripts are correctly ordered no ? http://stackoverflow.com/questions/304399/do-caffeinated-drinks-improve-your-programming-productivity-or-cause-more-proble/304415#304415 Comment by labilbe on Do caffeinated drinks improve your programming productivity, or cause more problems? labilbe 2008-11-20T15:34:25Z 2008-11-20T15:34:25Z It happens that when I go to bathroom or smoke a cigarette I resolve some problems I couldn't resolve reading code. http://stackoverflow.com/questions/288061/do-there-exist-any-compilers-with-localized-versions-of-programming-languages/288109#288109 Comment by labilbe on Do there exist any compilers with localized versions of programming languages? labilbe 2008-11-13T22:10:05Z 2008-11-13T22:10:05Z To be honest I don't like this language. My brother is currently using a lot. It's a good language to develop fast but you feel quickly blocked when you try to do custom things. http://stackoverflow.com/questions/279953/how-to-send-an-email-with-attachments-using-smtpclient-sendasync/283354#283354 Comment by labilbe on How to send an email with attachments using SmtpClient.SendAsync? labilbe 2008-11-12T13:07:06Z 2008-11-12T13:07:06Z Thank you you saved my day! http://stackoverflow.com/questions/279953/how-to-send-an-email-with-attachments-using-smtpclient-sendasync/281598#281598 Comment by labilbe on How to send an email with attachments using SmtpClient.SendAsync? labilbe 2008-11-12T02:05:44Z 2008-11-12T02:05:44Z Can you try with my new code sample please?