zzfive03
Programmer
- Jun 11, 2001
- 267
I have a text box that when onblur is set, I want it to call my VB function. I don't know how to propery call my function from the onblur call. Here is my code example:
**********
'My text box code
Response.Write("<textarea rows=10 cols = 70 onblur='save_comment()'> </textarea>"
'My VB funciton (on the same page)
Sub save_comment
Response.Write("test"
End Sub
**********
I keep getting an error where the onblur does not understand I have a function on the page? What am I doing wrong?
Thanks in advance for your help.
**********
'My text box code
Response.Write("<textarea rows=10 cols = 70 onblur='save_comment()'> </textarea>"
'My VB funciton (on the same page)
Sub save_comment
Response.Write("test"
End Sub
**********
I keep getting an error where the onblur does not understand I have a function on the page? What am I doing wrong?
Thanks in advance for your help.