Can I update the value in a textfield by checking the value in another field. I have the code below but I get an internal error message when i try to run the page
Regards
Olly
Code:
<%
txtCause=Request.Form("txtCause")
txtStatus=Request.Form("txtStatus")
If txtCause.value > 0 Then
txtStatus = "Pending"
Else
txtStatus = "Outstanding"
%>
<%
End If
End If
%>
Regards
Olly