Hello, I am having a problem placing text in a text element.
The FORM:
<form name="frmAction" action="<%= sorterAction %>">
<input name="fileName" type="text" >
</form>
The FUNCTION:
function link_click(fileName)
document.frmAction.fileName.value = fileName
document.frmAction.submit()
end function
The CALL:
<a href = "vbscript: link_click(<%=rsUserView("lName"
%>)" >
<%= rsUserView("lname"
& ", " & rsUserView("fName"
%></a>
Any body see the error. I don't get an error message, it just doesn't place the text in the form. I know I must be missing something.
Thanks
The FORM:
<form name="frmAction" action="<%= sorterAction %>">
<input name="fileName" type="text" >
</form>
The FUNCTION:
function link_click(fileName)
document.frmAction.fileName.value = fileName
document.frmAction.submit()
end function
The CALL:
<a href = "vbscript: link_click(<%=rsUserView("lName"
<%= rsUserView("lname"
Any body see the error. I don't get an error message, it just doesn't place the text in the form. I know I must be missing something.
Thanks