I have to admit I don't understand the question or the relevance of the response to the question.
JSP is Java Server Pages. It is written in Java (as in the language from SUN, not to be confused with Javascript) and runs on Tomcat on either Apache or IIS (possibly others). It compiles to Java Servlets and, at least back when I used it, gives back horrendously useless error messages.
ASP is Active Server Pages. ASP is basically a collection of objects that provide an interface between a script and HTTP data from IIS. ASP is not a language and can in fact ASP pages can be written in a variety of languages.
Now, if your question was whether there are any benefits to writing ASP pages using Javascript, that then makes some sense (though sadly, still does not make the first response relevant).
VBScript has a very limited syntax and does not offer all of the capabilities of Javascript natively. Error handling in VBScript is barely better than useless.
One advantage you have (that I can begin to see the relation to the first response on) is that if you use Javascript for a client-side language, using VBScript makes your server-side code stand out more. However this argument normally makes me cringe because if a programmer has that much difficulty knowing the difference between their client-side and server-side coder then I would prefer them to be doing neither.
Javascript has been shown to be faster in some instances, but I don't use it regularly and haven't benchmarked it recently against VBScript, so I don't have any info on that.
Other options I have tried include Python and Perl. Somewhere in the depths of the forum is a set of benchmarks showing some common actions in each language vs the other (concatenation vs Response.Write) but I don't remember if I did full benchmarks and posted everything or just posted the results somewhere as advice.
