Can someone tell me what I should include to write custom JavaScriptConverter class? I currently get a not defined error when inheriting it.
Imports System
Imports System.Collections.Generic
Imports System.Collections.ObjectModel
Imports System.Web
Imports System.Collections
Public Class CustomClass
Inherits JavaScriptConverter 'Error here
End Class
From MSDN:
You need to make sure you’ve implemented all of these members.