On Wed, 29 Sep 2004 02:20:18 +0200, "Johan Christensson"
<> wrote:
>I'm woundering if it's possibel to transfer a OnAction value from a
>drop-down box in an ASP page without having to use Java code?
Sure. It could be JavaScript, ActiveX or anything else tht will
operate on the client side.
>I mean something like this:
>
><%
>
>Sub resposeprocess
> some code,......
>End Sub
>
>%>
>
><Select name="DropDownMenu onAction="responseprocess">
><Option value="1">Value 1</option>
><Option value="2">Value 2</option>
></Select>
>
>Can i get holds of the value from the drop-down box and use it inte the
>subroutibe?
No. The ASP page is processed and sent to the client. Then the
client changes something. The ASP is done, so the client has to
trigger sending something to the server. Which means some type of
client side code, be it Java, JavaScript, ActiveX or a "Submit"
button.
Jeff