User labilbe - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T03:48:09Zhttp://stackoverflow.com/feeds/user/3199http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/355842/asp-net-mvc-handleerror-throwing-500-internal-server-error/1236497#12364970Answer by labilbe for ASP.Net MVC HandleError throwing 500 Internal Server Errorlabilbe2009-08-06T01:04:04Z2009-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> <customErrors mode="On" defaultRedirect="/Error">
<error statusCode="404" redirect="/Error/NotFound"/>
</customErrors>
</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#12309270Answer by labilbe for ASP.Net MVC HandleError throwing 500 Internal Server Errorlabilbe2009-08-05T02:43:19Z2009-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-d3How to pass special characters so ASP.NET MVC can handle correctly query string data?labilbe2008-12-17T03:46:44Z2009-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#10360660Answer by labilbe for mailto special characterslabilbe2009-06-24T01:36:42Z2009-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#6567200Answer by labilbe for How efficient are IFrames?labilbe2009-03-18T02:00:31Z2009-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#6332230Answer by labilbe for Best tool for performance testing ASP.NETlabilbe2009-03-11T03:24:01Z2009-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#6251062Answer by labilbe for How to test custom Model Binders in ASP.NET MVC?labilbe2009-03-09T05:22:52Z2009-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#6092210Answer by labilbe for Matching a regex in html, ignoring spaces, and quotation markslabilbe2009-03-04T04:26:37Z2009-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#5021241Answer by labilbe for What is the best UI you've ever used?labilbe2009-02-02T03:40:45Z2009-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#4944960Answer by labilbe for .NET SMTPClient - where is pending outgoing mail stored?labilbe2009-01-30T04:35:19Z2009-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> <mailSettings>
<!--
<smtp
deliveryMethod = "Network" [Network | SpecifiedPickupDirectory | PickupDirectoryFromIis]
from = "" [String]
>
<network
defaultCredentials = "false" [true|false]
host = "" [String]
password = "" [String]
port = "25" [number]
userName = "" [String]
/>
<specifiedPickupDirectory
pickupDirectoryLocation = "" [String]
/>
</smtp>
-->
<smtp deliveryMethod="Network">
<network defaultCredentials="false" port="25" />
</smtp>
</mailSettings>
</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#4944390Answer by labilbe for Highlighting columns in a table with jQuerylabilbe2009-01-30T04:00:32Z2009-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#4943870Answer by labilbe for Highlighting columns in a table with jQuerylabilbe2009-01-30T03:30:30Z2009-01-30T03:30:30Z<p>Why not to use the advantages of html ?</p>
<p>Instead of </p>
<pre><code><table>
<tr>
<td>
...
</td>
</tr>
</table>
</code></pre>
<p>Try</p>
<pre><code><table>
<tfoot>
<tr>
<td>
...
</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>
...
</td>
</tr>
</tbody>
</table>
</code></pre>
<p>You can use the <code><thead></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#4943690Answer by labilbe for Where to get Microsoft.Web.Mvc.dlllabilbe2009-01-30T03:21:19Z2009-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#3262341Answer by labilbe for Adding "active" tag to navigation list in an asp.net mvc master pagelabilbe2008-11-28T17:08:32Z2009-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#4745960Answer by labilbe for Improving a Web Login Screenlabilbe2009-01-23T21:18:32Z2009-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#3746890Answer by labilbe for How to pass special characters so ASP.NET MVC can handle correctly query string data?labilbe2008-12-17T14:28:00Z2008-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#3276931Answer by labilbe for Posting base64 encoded files to an asp.net 1.1 pagelabilbe2008-11-29T16:48:51Z2008-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#3217892Answer by labilbe for Unit Testing: Creating a 'mock' request to simulate a MVC page requestlabilbe2008-11-26T19:06:45Z2008-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<HttpRequestBase>();
var context = mocks.StrictMock<HttpContextBase>();
var response = mocks.StrictMock<HttpResponseBase>();
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-localization1Controller's actions names localizationlabilbe2008-11-24T22:27:37Z2008-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#3157811Answer by labilbe for Problem setting path to jquery in mvc applabilbe2008-11-24T22:52:41Z2008-11-24T22:52:41Z<p>As you are on a master page you can use</p>
<pre><code><script src="<%=ResolveUrl(~/Views/Scripts/jquery-1.2.6.min.js) %>" type="text/javascript"></script>
</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#3144180Answer by labilbe for Hiding table rows without resizing overall width...labilbe2008-11-24T15:10:08Z2008-11-24T15:10:08Z<p>You can do it using pure HTML</p>
<pre><code><table border="1">
<colgroup>
<col width="150px" />
<col width="10px" />
<col width="220px" />
</colgroup>
<tr>
<td valign="top">1</td>
<td> </td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td> </td>
<td>4</td>
</tr>
</table>
</code></pre>
http://stackoverflow.com/questions/314301/html-how-to-pause-refresh-of-page-when-drawing-html-table-dynamically/314400#3144000Answer by labilbe for HTML: How to "pause" refresh of page when drawing HTML table dynamicallylabilbe2008-11-24T15:05:03Z2008-11-24T15:05:03Z<p>Did you try the <tbody> 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#3139141Answer by labilbe for Can I automate creating a .NET web application in IIS?labilbe2008-11-24T11:26:16Z2008-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#3008850Answer by labilbe for How do you globally set the date format in ASP.NET?labilbe2008-11-19T03:03:21Z2008-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#2921440Answer by labilbe for Hosting a complex online servicelabilbe2008-11-15T04:17:28Z2008-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#2921350Answer by labilbe for MVC Preview 5 - Rendering A View To String For Testinglabilbe2008-11-15T04:10:45Z2008-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#2918563Answer by labilbe for c# performance: type comparison vs. string comparisonlabilbe2008-11-15T00:22:54Z2008-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-sendasync3How to send an email with attachments using SmtpClient.SendAsync?labilbe2008-11-11T03:49:50Z2008-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#2907580Answer by labilbe for How to deal with an inept and self-centered programmer?labilbe2008-11-14T17:14:21Z2008-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#2908721Answer by labilbe for What is more important, testability of code, or adherence to OOP principles?labilbe2008-11-14T17:55:52Z2008-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#1036066Comment by labilbe on mailto special characterslabilbe2009-09-28T17:03:56Z2009-09-28T17:03:56ZSince 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#60159Comment by labilbe on HTTPS with Visual Studio's built-in ASP.NET Develpment Serverlabilbe2009-07-06T03:17:28Z2009-07-06T03:17:28ZThe 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/…</a>http://stackoverflow.com/questions/608962/javascript-files-not-mapping-correctly-in-asp-net-mvc/609072#609072Comment by labilbe on Javascript files not mapping correctly in ASP.NET MVC?labilbe2009-03-04T04:29:12Z2009-03-04T04:29:12ZA workaround of Url.Content can be ResolveUrl.
But Url.Content is ok.http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/343740#343740Comment by labilbe on Worst UI You've Ever Usedlabilbe2009-02-02T03:33:19Z2009-02-02T03:33:19ZHappy debugging!http://stackoverflow.com/questions/502067/best-web-ui-youve-ever-used/502078#502078Comment by labilbe on Best *Web* UI you've ever usedlabilbe2009-02-02T03:13:58Z2009-02-02T03:13:58ZThe 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#494439Comment by labilbe on Highlighting columns in a table with jQuerylabilbe2009-02-02T02:15:46Z2009-02-02T02:15:46ZI am sorry I have no more clues :(http://stackoverflow.com/questions/494371/visual-web-developer-resize-all-images-together/494384#494384Comment by labilbe on visual web developer resize "all images" together?labilbe2009-01-30T03:44:48Z2009-01-30T03:44:48ZThank you for sharing the solution :)http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/431284#431284Comment by labilbe on What was your first computer game that got you interested in computers?labilbe2009-01-23T21:34:36Z2009-01-23T21:34:36Zda frenchie game :phttp://stackoverflow.com/questions/373599/how-to-pass-special-characters-so-asp-net-mvc-can-handle-correctly-query-string-d/403812#403812Comment by labilbe on How to pass special characters so ASP.NET MVC can handle correctly query string data?labilbe2009-01-01T23:49:36Z2009-01-01T23:49:36ZThanks Phil for taking the time to investigate this problemhttp://stackoverflow.com/questions/373599/how-to-pass-special-characters-so-asp-net-mvc-can-handle-correctly-query-string-d/375718#375718Comment by labilbe on How to pass special characters so ASP.NET MVC can handle correctly query string data?labilbe2008-12-18T04:00:31Z2008-12-18T04:00:31ZIs 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#300379Comment by labilbe on How to Include Multiple Javascript Files in .NET (Like they do in rails)labilbe2008-11-21T16:22:43Z2008-11-21T16:22:43ZYou 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#304415Comment by labilbe on Do caffeinated drinks improve your programming productivity, or cause more problems?labilbe2008-11-20T15:34:25Z2008-11-20T15:34:25ZIt 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#288109Comment by labilbe on Do there exist any compilers with localized versions of programming languages?labilbe2008-11-13T22:10:05Z2008-11-13T22:10:05ZTo 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#283354Comment by labilbe on How to send an email with attachments using SmtpClient.SendAsync?labilbe2008-11-12T13:07:06Z2008-11-12T13:07:06ZThank you you saved my day!http://stackoverflow.com/questions/279953/how-to-send-an-email-with-attachments-using-smtpclient-sendasync/281598#281598Comment by labilbe on How to send an email with attachments using SmtpClient.SendAsync?labilbe2008-11-12T02:05:44Z2008-11-12T02:05:44ZCan you try with my new code sample please?