Tip Bank

DevX - Software Development Resource

Handling Single Quotes in Values From ASP

Question: How can I prevent sending the contents of a form field containing single quotes to the server? Single quotes should be converted to double quotes in a way that

DevX - Software Development Resource

Test for NULL Properly in a Recordset

Question: I have a column in SQL Server created like this: “vchrFirstName varchar (50) NULL” However, this code does not produce anything, including any errors, when the record is NULL:

DevX - Software Development Resource

Passing Parameters to an ASP Page

Question: How do you pass parameters from an HTML page using either Java or Visual Basic to an ASP page? Answer: You do not need Java or VB to pass

DevX - Software Development Resource

Use Underscores When Dealing With Long Strings

Question: Why do I get an “unterminated string constant” error message in this code? Answer: You can’t let your strings wrap onto multiple lines without using a continuation character. The

DevX - Software Development Resource

Run Code Only When Form Is Submitted

Question: I have a Web page that uses a form to submit information to an ASP page. Once the data is submitted, the page is reloaded. At this point, if