I have an event database in sql server 2000 with a phone number field with datatype text and it will not display in my asp page and i am not sure why. I know there is some data in the table because I entered a few events. Can someone help?
Here is the code
Quincy
Here is the code
Code:
strPhone1 = rsEvent("eventPhoneContact1")
strPhone2 = rsEvent("eventPhoneContact2")
<%if strPhone1 <> "" Then%><%=strPhone1%><br /><%End If%>
<%if strPhone2 <> "" Then%><%=strPhone2%><br /><%End If%>
Quincy