Archive | ASP.NET MVC

13 July 2009 ~ 0 Comments

Membuat Accelerator untuk Internet Explorer 8 – Code Converter

BTW, post ini merupakan studi kasus dari artikel yang telah dibuat sebelumnya di geeks. Tentang Accelerator Accelerator, yang pada Internet Explorer 8 beta disebut dengan Activities, adalah suatu konsep baru yang memungkinkan user untuk berinteraksi dengan web service atau aplikasi dari kebiasan browsing Anda (di internet). Maksudnya, katakanlah Anda kesulitan dengan bahasa Inggris, dan ketika [...]

Continue Reading

26 June 2009 ~ 4 Comments

Konversi dataset ke JSON

Setelah muter2 ketemu juga akhirnya. Biar gampangnya, serialisasi ke JSON menggunakan library JSON.NET, di websitenya ada beberapa versi tergantung versi .net framework yang digunakan. BTW, ini kodenya : 1: Imports Newtonsoft.Json 2: Private Function GetCustomer() As String 3: Dim retVal As String = “” 4: Dim ds As DataSet = DAL.Customer.GetCustomers 5: 6: If ds [...]

Continue Reading

19 June 2009 ~ 0 Comments

Running ASP.NET MVC website on Windows XP/IIS 5.1

If your development environment is still using Windows XP Pro and need to run ASP.NET MVC web application, probably you are running the app from the Visual Studio IDE. Why not using IIS ? Well, technically it is possible to run ASP.NET MVC web application on IIS 5.1 but requires too many action as described [...]

Continue Reading