rekadia has written 5 articles

ASP MVC Handle 404

http://stackoverflow.com/questions/619895/how-can-i-properly-handle-404-in-asp-net-mvc Baca jawaban “cottsak”. Jawaban cottsak untuk MVC 1 dan 2. Untuk kasus MVC 4, perlu mengubah [code language=”csharp”] this.InvokeHttp404(HttpContext); [/code] menjadi [code language=”csharp”] var wrapper = new HttpContextWrapper(System.Web.HttpContext.Current); return this.InvokeHttp404(wrapper); [/code] Penanganan akan dimasukan ke dalam template project.

Write Source Code – WordPress

Using plugin SyntaxHighLighter you can write source code to posting Shortcode Parameters These are the parameters you can pass to the shortcode and what they do. For the booleans (i.e. on/off), pass true/1 or false/0. lang or language — The language syntax to highlight with. You can alternately just use that as the tag, such as. Click here for a list of valid…

ASP.NET MVC: JSON string too long

If you get the InvalidOperationException: Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set on the maxJsonLength property. when trying to serialize data to JSON representation, then most likely you are doing something wrong. AJAX is not meant to move large amounts of data – rethink…