Joe
|
| Posted: 01/03/2005, 11:18 AM |
|
I need a little help, the code below is something similar to what I am trying to accomplish. I have a payment lookup section on one of my pages when you type in the order number it will bring up information. But what I want to do is have a label say 'YES' depending if there is a check value present. But if no check value is present I want to the have the label value to be Estimated Pay Date and then the value be the Invoice date plus 14 days. Now I am pretty sure this is the code that would do it with some modifications. I have used this code before just in other way. Any help or direction would be great thanks again
.ASP
CCS
MS SQL
Thank You
Joe
Function Tasks_Priority_BeforeShow()
If Tasks.Priority.Value = "High" Then
Tasks.Priority.Value = "<font color=RED>"&Tasks.Priority.Value&"</font>"
Elseif Tasks.Priority.Value = "Low" Then
Tasks.Priority.Value = "<font color=GREEN>"&Tasks.Priority.Value&"</font>"
End if
End Function
|