I have converted ASP code to .NET and my new program bombed on a null value. I was wondering if it's the first time ever that this value has been null or if ASP somehow got away with it when it was null in the past. The field in questin is oRS("usage_value"). Here is the ASP code:

Code:
			<%If oRS("usage_value") > 0 Then%>
				<A HREF="../../GoToThisPage.asp?val1=<%=val1%>&val2=<%=oRS("val2")%>&val3=<%=oRS("val3")%>&usage_value=<%=oRS("usage_value")%>" TARGET="HIST"><IMG SRC="../../images/view.gif" BORDER="0"></A>
			<%Else%>
				<B><FONT COLOR="red">!</FONT></B>
			<%End If%>
I know what I can do to fix the problem but I will be changing a view which as far as I know has been in existence a long, long time. So I'd like to know if ASP would also have choke on this? (I will be rigging up some data to test it, but also wanted to hear if the forum would have anything to say).

Thanks...