How to pass special characters so ASP.NET MVC can handle correctly query string data? - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T08:41:03Zhttp://stackoverflow.com/feeds/question/373599http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://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/373599/how-to-pass-special-characters-so-asp-net-mvc-can-handle-correctly-query-string-d/373640#3736401Answer by EndangeredMassa for How to pass special characters so ASP.NET MVC can handle correctly query string data?EndangeredMassa2008-12-17T04:16:06Z2008-12-17T04:16:06Z<p>URL Encoding! Change the link so that it encodes special characters.</p>
<pre><code>Server.URLencode(strURL)
</code></pre>
<p>C# will become "c%23".</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/373599/how-to-pass-special-characters-so-asp-net-mvc-can-handle-correctly-query-string-d/375718#3757181Answer by Haacked for How to pass special characters so ASP.NET MVC can handle correctly query string data?Haacked2008-12-17T19:23:53Z2008-12-17T19:23:53Z<p>Works on my machine. Here's what I did to create the simplest possible example.</p>
<pre><code>//Global.asax.cs
using System.Web.Mvc;
using System.Web.Routing;
namespace MvcApplication4 {
public class MvcApplication : System.Web.HttpApplication {
public static void RegisterRoutes(RouteCollection routes) {
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);
routes.MapRoute("Invoice-New-NewCustomer",
"Invoice/New/Customer/New/{*name}",
new { controller = "Customer", action = "NewInvoice" },
new { name = @"[^\.]*" });
}
protected void Application_Start() {
RegisterRoutes(RouteTable.Routes);
}
}
}
//HomeController.cs
using System.Web.Mvc;
namespace MvcApplication4.Controllers {
[HandleError]
public class HomeController : Controller {
public ActionResult Index() {
return RedirectToAction("NewInvoice", "Customer", new { name = "The C# Guy" });
}
}
}
//CustomerController.cs
using System.Web.Mvc;
namespace MvcApplication4.Controllers {
public class CustomerController : Controller {
public string NewInvoice(string name) {
return name;
}
}
}
</code></pre>
<p>I then started my app and navigated to /home/index. THe redirect occurs and I saw "The C# Guy" in my browser.</p>
http://stackoverflow.com/questions/373599/how-to-pass-special-characters-so-asp-net-mvc-can-handle-correctly-query-string-d/403812#4038125Answer by Haacked for How to pass special characters so ASP.NET MVC can handle correctly query string data?Haacked2008-12-31T19:07:36Z2008-12-31T19:07:36Z<p>Ok, I confirmed that this is <em>now</em> a known issue in ASP.NET Routing, unfortunately. The problem is that deep in the bowels of routing, we use Uri.EscapeString when escaping routing parameters for the Uri. However, that method does not escape the "#" character.</p>
<p>Note that the # character (aka Octothorpe) is technically the wrong character. C♯ the language is actually a "C" followed by a Sharp sign as in music: <a href="http://en.wikipedia.org/wiki/Sharp_(music)" rel="nofollow">http://en.wikipedia.org/wiki/Sharp_(music)</a></p>
<p>If you used the sharp sign, that could potentially solve this problem. :P</p>
<p>Another solution, since most people will want to use the octothorpe is to write a custom route for this route and after getting the virtual path path, encode the # sign using HttpUtility.UrlEncode which encodes # to %23.</p>
http://stackoverflow.com/questions/373599/how-to-pass-special-characters-so-asp-net-mvc-can-handle-correctly-query-string-d/1113030#11130300Answer by Saurabh for How to pass special characters so ASP.NET MVC can handle correctly query string data?Saurabh2009-07-11T05:38:26Z2009-07-11T05:38:26Z<p>string encodedUrl=Server.UrlEncode("My first C# Asp.Net MVC Application");</p>
<p>it gives me something like this "My+first+C%2523+Asp.Net+MVC+Application"</p>
<p>empty spaces replaced by "+" but i think it should be "%20"</p>
<p>any ideas, how can i resolve this??</p>
<p>Kind Regards,
Saurabh</p>
http://stackoverflow.com/questions/373599/how-to-pass-special-characters-so-asp-net-mvc-can-handle-correctly-query-string-d/1113053#11130530Answer by Saurabh for How to pass special characters so ASP.NET MVC can handle correctly query string data?Saurabh2009-07-11T05:53:42Z2009-07-11T05:53:42Z<p>It doesn't encode the " * " also</p>