when performing input error checking on forms which is best to use?
VB Code:
  1. If txtbox1.text = vbnullstring then
  2.     lblErrorMsg.text = "Box 1 Empty"
  3. End IF

or

VB Code:
  1. If Request.Form.Item("txtbox1") = vbnullstring Then
  2.     lblErrorMsg.text = "Box 1 Empty"
  3. End If


basically what is the difference