devxlogo

Beware of Null Values in ASP Database Programs

Beware of Null Values in ASP Database Programs

The Active Server Pages HTMLEncode function is great for handling strings that come from a database, especially if the string includes foreign characters. However, you can get into trouble if the string field in the database is empty; that is, it contains a Null. When it hits a Null, HTMLEncode throws a “Type Mismatch” error. Make sure you check for Nulls whenever you are using HTML-encoding. Here’s sample routine:

 <% Function HTMLEncode(instring)  If Not IsNull(instring) then    HTMLEncode=Server.HTMLEncode(instring)  else     HTMLEncode=""  end ifEnd function%><%dbdatastring=NullResponse.Write HTMLEncode(dbdatastring)dbdatastring="J'ai mal

See also  Does It Make Sense to Splurge on a Laptop?
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist