I have an if statement to check if something is null,
and if so I want to set the value for example to *
This just a test I was working with.
How do I set the MySelect.Value to *?
and if so I want to set the value for example to *
This just a test I was working with.
How do I set the MySelect.Value to *?
Code:
If MySelect.Value ="" Then
Response.Write("No Value Present <BR>")
MySelect.Value=("*")
response.write ("MySelectValue=" & MySelect.value.tostring)
End If