Yeah.
eg:
x_CompanyID = Null: ox_CompanyID = Null: x_CompanyName = Null: ox_CompanyName = Null: x_ROC = Null: ox_ROC = Null: x_PostalAddress = Null: ox_PostalAddress = Null: x_WebsiteAddress = Null: ox_WebsiteAddress = Null
Is the same as (and if you like, should normally be):
x_CompanyID = Null
ox_CompanyID = Null
x_CompanyName = Null
ox_CompanyName = Null
x_ROC = Null
ox_ROC = Null
x_PostalAddress = Null
ox_PostalAddress = Null
x_WebsiteAddress = Null
ox_WebsiteAddress = Null
In this case it's quite understandable why the code writer has used several code lines in a single line, but its not a recommended approach to keep your code clean and overseeable. If you're a C++, pascal or PHP programmor, a colon in ASP is the same as a semicolon in these other languages for multiple code statements on a single line.