0

Can i use a .jsp file as a parameter for onChange in a dropdownlist? Like this :

<td><select name="transporter" onchange="debusTransporter.jsp">
mekafe
  • 596
  • 4
  • 13
  • 32
  • 1
    JSP executed at the server side that gets transformed into Java the first time is processed by the servlet container. onchange is event that interpreted by the browser. – Sasi Kathimanda Jan 02 '14 at 00:43

1 Answers1

1

Answer is No.

Explanation

onchange

The onchange property sets and returns the event handler for the change event.

The term event handler may refer to:

  • any function or object registered to be notified of events,
  • or, more specifically, to the mechanism of registering event listeners via on... attributes or properties in HTML and other web APIs, such as <button onclick="alert(this)"> or window.onload = function() { /* ... */ }.

See also

Community
  • 1
  • 1
Aniket Kulkarni
  • 12,825
  • 9
  • 67
  • 90